Remove unused user control

This commit is contained in:
Chev 2021-02-03 17:03:20 -08:00
parent cc01a1574e
commit 0e1db0eb2d
2 changed files with 0 additions and 29 deletions

View file

@ -1,14 +0,0 @@
<UserControl x:Class="BOTWToolset.Control.TSCBAreaExpander"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:BOTWToolset.Control"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="250">
<Grid>
<Expander x:Name="AreaExpander" Header="Expander">
<Grid Background="Transparent"/>
</Expander>
</Grid>
</UserControl>

View file

@ -1,15 +0,0 @@
using System.Windows.Controls;
namespace BOTWToolset.Control
{
/// <summary>
/// Interaction logic for TSCBAreaExpander.xaml
/// </summary>
public partial class TSCBAreaExpander : UserControl
{
public TSCBAreaExpander()
{
InitializeComponent();
}
}
}