添加项目文件。
This commit is contained in:
67
Szmedi.RvKits/ScriptPad/ReferenceWindow.xaml
Normal file
67
Szmedi.RvKits/ScriptPad/ReferenceWindow.xaml
Normal file
@@ -0,0 +1,67 @@
|
||||
<Window
|
||||
x:Class="ScriptPad.ReferenceWindow"
|
||||
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="450"
|
||||
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 Grid.Row="1">
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="auto" />
|
||||
<ColumnDefinition Width="*" />
|
||||
<ColumnDefinition Width="auto" />
|
||||
</Grid.ColumnDefinitions>
|
||||
<StackPanel Orientation="Horizontal">
|
||||
<Button
|
||||
Name="addBtn"
|
||||
Width="auto"
|
||||
Height="auto"
|
||||
Click="AddBtn_Click"
|
||||
Content="管理程序集引用" />
|
||||
<Button
|
||||
Name="browseBtn"
|
||||
Width="auto"
|
||||
Height="auto"
|
||||
Click="BrowseBtn_Click"
|
||||
Content="浏览..." />
|
||||
|
||||
<Button
|
||||
Name="deleteBtn"
|
||||
Width="auto"
|
||||
Height="auto"
|
||||
Click="DeleteBtn_Click"
|
||||
Content="删除" />
|
||||
|
||||
</StackPanel>
|
||||
<StackPanel Grid.Column="2" Orientation="Horizontal">
|
||||
<Button
|
||||
Name="CloseBtn"
|
||||
Grid.Column="5"
|
||||
Width="auto"
|
||||
Height="auto"
|
||||
Click="Close_Click"
|
||||
Content="关闭" />
|
||||
</StackPanel>
|
||||
</Grid>
|
||||
</Grid>
|
||||
</Window>
|
||||
Reference in New Issue
Block a user