You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.1 KiB
XML
29 lines
1.1 KiB
XML
<Window xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
x:Class="Sln.Wcs.UI.Views.Base.EntityEditWindow"
|
|
x:CompileBindings="False"
|
|
SizeToContent="WidthAndHeight"
|
|
MaxWidth="750" MaxHeight="700"
|
|
WindowStartupLocation="CenterOwner"
|
|
Title="编辑"
|
|
Background="#0F1620"
|
|
Foreground="#BCC8D6"
|
|
CanResize="False">
|
|
|
|
<Grid RowDefinitions="*,Auto" Margin="20,16,20,16">
|
|
<ScrollViewer Grid.Row="0">
|
|
<WrapPanel x:Name="FormPanel" />
|
|
</ScrollViewer>
|
|
|
|
<StackPanel Grid.Row="1" Orientation="Horizontal"
|
|
HorizontalAlignment="Right" Spacing="10" Margin="0,16,0,0">
|
|
<Button x:Name="CancelBtn" Content="取消"
|
|
Background="#0F1F38" Foreground="#8B9BB5"
|
|
Padding="22,8" />
|
|
<Button x:Name="SaveBtn" Content="保存"
|
|
Background="#1565C0" Foreground="White"
|
|
Padding="22,8" />
|
|
</StackPanel>
|
|
</Grid>
|
|
</Window>
|