mirror of
https://github.com/chibicitiberiu/drumkit.git
synced 2024-02-24 10:53:32 +00:00
40 lines
1.3 KiB
Plaintext
40 lines
1.3 KiB
Plaintext
|
<UserControl
|
||
|
x:Class="DrumKit.EditableTextblock"
|
||
|
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="106.895"
|
||
|
d:DesignWidth="501.752"
|
||
|
Name="Stuff">
|
||
|
|
||
|
<Grid>
|
||
|
<Grid.ColumnDefinitions>
|
||
|
<ColumnDefinition />
|
||
|
<ColumnDefinition Width="Auto" />
|
||
|
</Grid.ColumnDefinitions>
|
||
|
|
||
|
<Button x:ConnectionId='1' Name="buttonEdit"
|
||
|
Grid.Column="1" Margin="5"
|
||
|
VerticalAlignment="Top"
|
||
|
Style="{StaticResource TextButtonStyle}"
|
||
|
FontFamily="{StaticResource SymbolThemeFontFamily}"
|
||
|
FontStyle="Normal" FontSize="17"
|
||
|
Content="" />
|
||
|
|
||
|
<TextBlock Name="textBlock" Grid.Column="0"
|
||
|
VerticalAlignment="Center"
|
||
|
Text="helo world"/>
|
||
|
|
||
|
<TextBox x:ConnectionId='2' Name="textBox" Grid.Column="0"
|
||
|
VerticalAlignment="Center"
|
||
|
Visibility="Collapsed"
|
||
|
/>
|
||
|
|
||
|
</Grid>
|
||
|
|
||
|
</UserControl>
|
||
|
|