/ILSpy/OpenFromGacDialog.xaml
http://github.com/icsharpcode/ILSpy · XAML · 44 lines · 44 code · 0 blank · 0 comment · 0 complexity · 3f93babc41f46ccc81fcdbc5bd0adb39 MD5 · raw file
- <?xml version="1.0" encoding="utf-8"?>
- <Window
- x:Class="ICSharpCode.ILSpy.OpenFromGacDialog" 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="Open From GAC"
- Style="{DynamicResource DialogWindow}"
- WindowStartupLocation="CenterOwner"
- ResizeMode="CanResizeWithGrip"
- MinWidth="200"
- MinHeight="150"
- Height="350"
- Width="750"
- FocusManager.FocusedElement="{Binding ElementName=filterTextBox}">
- <Grid
- Margin="12,8">
- <Grid.RowDefinitions>
- <RowDefinition
- Height="Auto" />
- <RowDefinition
- Height="1*" />
- <RowDefinition
- Height="Auto" />
- </Grid.RowDefinitions>
- <DockPanel>
- <Label DockPanel.Dock="Left" Target="{Binding ElementName=filterTextBox}">_Search:</Label>
- <TextBox Name="filterTextBox" TextChanged="FilterTextBox_TextChanged" />
- </DockPanel>
- <ListView Name="listView" Grid.Row="1" Margin="0, 8" controls:SortableGridViewColumn.SortMode="Automatic" SelectionChanged="ListView_SelectionChanged">
- <ListView.View>
- <GridView>
- <controls:SortableGridViewColumn x:Name="nameColumn" Width="300" Header="Reference Name" DisplayMemberBinding="{Binding ShortName}" />
- <controls:SortableGridViewColumn Width="75" Header="Version" DisplayMemberBinding="{Binding Version}" />
- <controls:SortableGridViewColumn Width="65" Header="Culture" DisplayMemberBinding="{Binding Culture}" />
- <controls:SortableGridViewColumn Width="115" Header="Public Key Token" DisplayMemberBinding="{Binding PublicKeyToken}" />
- <controls:SortableGridViewColumn Width="1000" Header="Location" DisplayMemberBinding="{Binding FileName}" />
- </GridView>
- </ListView.View>
- </ListView>
- <StackPanel Grid.Row="2" Orientation="Horizontal" HorizontalAlignment="Right">
- <Button IsDefault="True" Margin="2,0" IsEnabled="False" Name="okButton" Click="OKButton_Click">Open</Button>
- <Button IsCancel="True" Margin="2,0">Cancel</Button>
- </StackPanel>
- <ProgressBar Grid.Row="1" Height="10" HorizontalAlignment="Stretch" Name="gacReadingProgressBar" VerticalAlignment="Bottom" Visibility="Hidden" />
- </Grid>
- </Window>