/ILSpy/CreateListDialog.xaml
http://github.com/icsharpcode/ILSpy · XAML · 24 lines · 24 code · 0 blank · 0 comment · 0 complexity · af1108c822e08e32548170db25c2b6cf MD5 · raw file
- <Window
- x:Class="ICSharpCode.ILSpy.CreateListDialog" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:controls="clr-namespace:ICSharpCode.ILSpy.Controls"
- Title="New list"
- Style="{DynamicResource DialogWindow}"
- WindowStartupLocation="CenterOwner"
- ResizeMode="NoResize"
- Width="300"
- Height="150"
- FocusManager.FocusedElement="{Binding ElementName=ListName}">
- <Grid Margin="12,8">
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto" />
- <RowDefinition Height="Auto" />
- </Grid.RowDefinitions>
- <StackPanel>
- <Label>Enter a list name:</Label>
- <TextBox Margin="8,8" Name="ListName" TextChanged="TextBox_TextChanged"></TextBox>
- </StackPanel>
- <StackPanel Grid.Row="2" Orientation="Horizontal" HorizontalAlignment="Right" Margin="8,0">
- <Button IsDefault="True" Margin="2,0" IsEnabled="False" Name="okButton" Click="OKButton_Click">Create</Button>
- <Button IsCancel="True" Margin="2,0">Cancel</Button>
- </StackPanel>
- </Grid>
- </Window>