23 lines
1.0 KiB
XML
23 lines
1.0 KiB
XML
<Window x:Class="ScriptPad.AddReferenceWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:local="clr-namespace:ScriptPad"
|
|
mc:Ignorable="d"
|
|
Title="程序集引用" Width="600" Height="400">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="auto"/>
|
|
</Grid.RowDefinitions>
|
|
<ListBox Grid.Row="0"
|
|
Name="ReferenceList">
|
|
</ListBox>
|
|
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right" Grid.Row="1">
|
|
<Button Content="OK" Name="okBtn" Width="80" Height="24" Margin="10" Click="OkBtn_Click" />
|
|
<Button Content="Cancel" Name="cancelBtn" Width="80" Height="24" Margin="10" Click="CancelBtn_Click"/>
|
|
</StackPanel>
|
|
</Grid>
|
|
</Window>
|