mirror of
https://github.com/chibicitiberiu/drumkit.git
synced 2024-02-24 10:53:32 +00:00
28 lines
942 B
Plaintext
28 lines
942 B
Plaintext
|
<UserControl
|
||
|
x:Class="DrumKit.ExperimentsSettingsControl"
|
||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
xmlns:local="using:DrumKit"
|
||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
mc:Ignorable="d"
|
||
|
d:DesignHeight="300"
|
||
|
d:DesignWidth="400">
|
||
|
|
||
|
<UserControl.Resources>
|
||
|
<ResourceDictionary>
|
||
|
<ResourceDictionary.MergedDictionaries>
|
||
|
<ResourceDictionary Source="/Common/TextButtonStyles.xaml" />
|
||
|
</ResourceDictionary.MergedDictionaries>
|
||
|
</ResourceDictionary>
|
||
|
</UserControl.Resources>
|
||
|
|
||
|
<Canvas Name="canvas">
|
||
|
<StackPanel>
|
||
|
<TextBox Style="{StaticResource MyTextBoxStyle}" Width="200" Text="Hello world!"/>
|
||
|
</StackPanel>
|
||
|
|
||
|
</Canvas>
|
||
|
</UserControl>
|
||
|
|