mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
1.1 KiB
24 lines
1.1 KiB
<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> |