25 lines
900 B
XML
25 lines
900 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<windowex:WindowEx
|
|
x:Class="RustTools.Editor.EditorWin"
|
|
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="using:RustTools"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:windowex="using:WinUIEx"
|
|
MinWidth="500"
|
|
MinHeight="500"
|
|
mc:Ignorable="d">
|
|
|
|
<Grid Name="grid">
|
|
<Grid Padding="9" Visibility="Visible">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto" />
|
|
<ColumnDefinition />
|
|
<ColumnDefinition Width="Auto" />
|
|
</Grid.ColumnDefinitions>
|
|
<TextBlock Grid.Column="0" Text="这是模组名称" />
|
|
</Grid>
|
|
</Grid>
|
|
</windowex:WindowEx>
|