12345678910111213141516171819202122 |
- <Window x:Class="InABox.DynamicGrid.DynamicContentDialog"
- 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:InABox.DynamicGrid"
- mc:Ignorable="d" Height="450" Width="800">
- <Window.Resources>
- <Style TargetType="Button">
- <Setter Property="Width" Value="80"/>
- <Setter Property="Height" Value="35"/>
- <Setter Property="Margin" Value="5,5,0,0"/>
- </Style>
- </Window.Resources>
- <DockPanel Margin="5">
- <DockPanel x:Name="Buttons" DockPanel.Dock="Bottom" LastChildFill="False">
- <Button x:Name="Cancel" DockPanel.Dock="Right" Content="Cancel" Click="Cancel_OnClick"/>
- <Button x:Name="OK" DockPanel.Dock="Right" Content="OK" Click="OK_OnClick"/>
- </DockPanel>
- <ContentPresenter x:Name="Presenter" DockPanel.Dock="Top" />
- </DockPanel>
- </Window>
|