Change the default grid height of Custom Plugin Hotkey Panel.

This commit is contained in:
qianlifeng
2014-03-19 22:44:51 +08:00
parent c068366ae2
commit 386b54cf6a

View File

@@ -32,9 +32,13 @@
<TextBlock VerticalAlignment="Center" Margin="0 0 10 0">Wox Hotkey:</TextBlock> <TextBlock VerticalAlignment="Center" Margin="0 0 10 0">Wox Hotkey:</TextBlock>
<wox:HotkeyControl x:Name="ctlHotkey"/> <wox:HotkeyControl x:Name="ctlHotkey"/>
</StackPanel> </StackPanel>
<StackPanel Grid.Row="1" Orientation="Vertical" VerticalAlignment="Top"> <Grid Grid.Row="1">
<TextBlock VerticalAlignment="Center" Margin="0 0 10 0">Custom Plugin Hotkey:</TextBlock> <Grid.RowDefinitions>
<ListView x:Name="lvCustomHotkey" Margin="0 5 0 0"> <RowDefinition Height="20"></RowDefinition>
<RowDefinition></RowDefinition>
</Grid.RowDefinitions>
<TextBlock VerticalAlignment="Center" Grid.Row="0" Margin="0 0 10 0">Custom Plugin Hotkey:</TextBlock>
<ListView x:Name="lvCustomHotkey" Margin="0 5 0 0" Grid.Row="1">
<ListView.View> <ListView.View>
<GridView> <GridView>
<GridView.Columns> <GridView.Columns>
@@ -57,7 +61,7 @@
</ListView.View> </ListView.View>
</ListView> </ListView>
</StackPanel> </Grid>
<StackPanel Grid.Row="2" HorizontalAlignment="Right" Orientation="Horizontal"> <StackPanel Grid.Row="2" HorizontalAlignment="Right" Orientation="Horizontal">
<Button x:Name="btnDeleteCustomHotkey" Click="BtnDeleteCustomHotkey_OnClick" Width="100" Margin="10">Delete</Button> <Button x:Name="btnDeleteCustomHotkey" Click="BtnDeleteCustomHotkey_OnClick" Width="100" Margin="10">Delete</Button>
<Button x:Name="btnEditCustomHotkey" Click="BtnEditCustomHotkey_OnClick" Width="100" Margin="10">Edit</Button> <Button x:Name="btnEditCustomHotkey" Click="BtnEditCustomHotkey_OnClick" Width="100" Margin="10">Edit</Button>