25 lines
1.1 KiB
XML
25 lines
1.1 KiB
XML
<UserControl x:Class="Torch.Server.Views.Blocks.PropertyView"
|
|
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:converters="clr-namespace:Torch.Server.Views.Converters"
|
|
mc:Ignorable="d">
|
|
<UserControl.Resources>
|
|
<converters:StringIdConverter x:Key="StringIdConverter"/>
|
|
</UserControl.Resources>
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition/>
|
|
<ColumnDefinition/>
|
|
</Grid.ColumnDefinitions>
|
|
<Label Grid.Column="0" x:Name="Label" Width="150" VerticalAlignment="Center">
|
|
<Label.Content>
|
|
<TextBlock Text="{Binding Name, StringFormat={}{0}: }" />
|
|
</Label.Content>
|
|
</Label>
|
|
<Frame Grid.Column="1" x:Name="Frame" NavigationUIVisibility="Hidden"/>
|
|
</Grid>
|
|
</UserControl>
|
|
|