33 lines
1.4 KiB
Plaintext
33 lines
1.4 KiB
Plaintext
|
|
<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:local="clr-namespace:ScriptPad"
|
||
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
|
Title="程序集引用"
|
||
|
|
Width="600"
|
||
|
|
Height="400"
|
||
|
|
Background="{DynamicResource MaterialDesign.Brush.Background}"
|
||
|
|
TextElement.Foreground="{DynamicResource MaterialDesign.Brush.Foreground}"
|
||
|
|
mc:Ignorable="d">
|
||
|
|
<Window.Resources>
|
||
|
|
<ResourceDictionary>
|
||
|
|
<ResourceDictionary.MergedDictionaries>
|
||
|
|
<ResourceDictionary Source="pack://application:,,,/Szmedi.RvKits;component/WPFUI.xaml" />
|
||
|
|
</ResourceDictionary.MergedDictionaries>
|
||
|
|
</ResourceDictionary>
|
||
|
|
</Window.Resources>
|
||
|
|
<Grid>
|
||
|
|
<Grid.RowDefinitions>
|
||
|
|
<RowDefinition Height="*" />
|
||
|
|
<RowDefinition Height="auto" />
|
||
|
|
</Grid.RowDefinitions>
|
||
|
|
<ListBox Name="ReferenceList" Grid.Row="0" />
|
||
|
|
<StackPanel Grid.Row="1" HorizontalAlignment="Right" Orientation="Horizontal">
|
||
|
|
<Button Name="okBtn" Click="OkBtn_Click" Content="确定" />
|
||
|
|
<Button Name="cancelBtn" Click="CancelBtn_Click" Content="取消" />
|
||
|
|
</StackPanel>
|
||
|
|
</Grid>
|
||
|
|
</Window>
|