mirror of
https://github.com/jie65535/GrasscutterCommandGenerator.git
synced 2025-06-07 22:59:14 +08:00
186 lines
6.1 KiB
XML
186 lines
6.1 KiB
XML
<Page
|
||
x:Class="GrasscutterTools.Pages.PageGive"
|
||
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:GrasscutterTools.Pages"
|
||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
Title="PageGive"
|
||
d:Background="{StaticResource NormalBorderBrush}"
|
||
d:DesignHeight="420"
|
||
d:DesignWidth="490"
|
||
mc:Ignorable="d">
|
||
|
||
<Grid Margin="8">
|
||
<Grid.RowDefinitions>
|
||
<RowDefinition Height="auto" />
|
||
<RowDefinition Height="auto" />
|
||
<RowDefinition />
|
||
</Grid.RowDefinitions>
|
||
|
||
<!-- 获取角色 -->
|
||
<GroupBox
|
||
Grid.Row="0"
|
||
Padding="4"
|
||
Header="Avatar">
|
||
<DockPanel>
|
||
<!-- 获取所有角色 -->
|
||
<Button
|
||
Padding="8,4"
|
||
HorizontalAlignment="Right"
|
||
VerticalAlignment="Center">
|
||
All Avatars
|
||
</Button>
|
||
|
||
<!-- 角色等级 -->
|
||
<Label Margin="8,0,0,0" VerticalAlignment="Center">Level:</Label>
|
||
<TextBox
|
||
Width="30"
|
||
Margin="4,0,0,0"
|
||
VerticalAlignment="Center">
|
||
90
|
||
</TextBox>
|
||
|
||
<!-- 角色命座 -->
|
||
<Label Margin="8,0,0,0" VerticalAlignment="Center">Constellation:</Label>
|
||
<TextBox
|
||
Width="30"
|
||
Margin="4,0,0,0"
|
||
VerticalAlignment="Center">
|
||
5
|
||
</TextBox>
|
||
|
||
<!-- 角色下拉框 -->
|
||
<ComboBox
|
||
x:Name="CmbAvatar"
|
||
Margin="8,0,0,0"
|
||
VerticalAlignment="Center"
|
||
IsEditable="True" />
|
||
</DockPanel>
|
||
</GroupBox>
|
||
|
||
<!-- 获取武器 -->
|
||
<GroupBox
|
||
Grid.Row="1"
|
||
Margin="0,4,0,0"
|
||
Padding="4"
|
||
Header="Weapon">
|
||
<DockPanel>
|
||
<!-- 获取所有武器 -->
|
||
<Button
|
||
Padding="8,4"
|
||
HorizontalAlignment="Right"
|
||
VerticalAlignment="Center">
|
||
All Weapons
|
||
</Button>
|
||
|
||
<!-- 武器等级 -->
|
||
<Label Margin="8,0,0,0" VerticalAlignment="Center">Level:</Label>
|
||
<TextBox
|
||
Width="30"
|
||
Margin="4,0,0,0"
|
||
VerticalAlignment="Center">
|
||
90
|
||
</TextBox>
|
||
|
||
<!-- 精练等级 -->
|
||
<Label Margin="8,0,0,0" VerticalAlignment="Center">Refinement:</Label>
|
||
<TextBox
|
||
Width="30"
|
||
Margin="4,0,0,0"
|
||
VerticalAlignment="Center">
|
||
5
|
||
</TextBox>
|
||
|
||
<!-- 武器下拉框 -->
|
||
<ComboBox
|
||
x:Name="CmbWeapon"
|
||
Margin="8,0,0,0"
|
||
VerticalAlignment="Center" />
|
||
</DockPanel>
|
||
</GroupBox>
|
||
|
||
<!-- 获取材料物品 -->
|
||
<GroupBox
|
||
Grid.Row="2"
|
||
Margin="0,4,0,0"
|
||
Padding="4"
|
||
Header="Item">
|
||
<Grid>
|
||
<Grid.RowDefinitions>
|
||
<RowDefinition Height="auto" />
|
||
<RowDefinition />
|
||
</Grid.RowDefinitions>
|
||
<StackPanel
|
||
Grid.Row="0"
|
||
HorizontalAlignment="Left"
|
||
Orientation="Horizontal">
|
||
<!-- 获取所有材料 -->
|
||
<Button
|
||
Padding="8,4"
|
||
HorizontalAlignment="Right"
|
||
VerticalAlignment="Center">
|
||
All Mats
|
||
</Button>
|
||
|
||
<!-- 物品数量 -->
|
||
<Label Margin="8,0,0,0" VerticalAlignment="Center">Amount:</Label>
|
||
<TextBox
|
||
Width="50"
|
||
Margin="4,0,0,0"
|
||
VerticalAlignment="Center">
|
||
99
|
||
</TextBox>
|
||
|
||
<!-- 物品ID -->
|
||
<Label Margin="8,0,0,0" VerticalAlignment="Center">Id:</Label>
|
||
<TextBox
|
||
Width="50"
|
||
Margin="4,0,0,0"
|
||
VerticalAlignment="Center" />
|
||
</StackPanel>
|
||
|
||
<!-- 操作按钮 -->
|
||
<StackPanel
|
||
Grid.Row="0"
|
||
HorizontalAlignment="Right"
|
||
Orientation="Horizontal">
|
||
<!-- 添加记录 -->
|
||
<Button
|
||
Padding="8,4"
|
||
VerticalAlignment="Center"
|
||
IsEnabled="False">
|
||
√ Record
|
||
</Button>
|
||
<!-- 删除记录 -->
|
||
<Button
|
||
Margin="4,0,0,0"
|
||
Padding="8,4"
|
||
VerticalAlignment="Center"
|
||
IsEnabled="False">
|
||
× Delete
|
||
</Button>
|
||
</StackPanel>
|
||
|
||
|
||
<Label
|
||
Grid.Row="1"
|
||
Margin="4"
|
||
HorizontalAlignment="Left"
|
||
VerticalAlignment="Top">
|
||
Records:
|
||
</Label>
|
||
<Label
|
||
Grid.Row="1"
|
||
Margin="4"
|
||
HorizontalAlignment="Right"
|
||
VerticalAlignment="Bottom"
|
||
Cursor="Hand"
|
||
Foreground="OrangeRed">
|
||
× Clear
|
||
</Label>
|
||
</Grid>
|
||
</GroupBox>
|
||
</Grid>
|
||
</Page>
|