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.
70 lines
3.3 KiB
XML
70 lines
3.3 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="780" MaxHeight="700"
|
|
WindowStartupLocation="CenterOwner"
|
|
Title="编辑"
|
|
Background="Transparent"
|
|
TransparencyLevelHint="AcrylicBlur"
|
|
ExtendClientAreaToDecorationsHint="True"
|
|
ExtendClientAreaChromeHints="PreferSystemChrome"
|
|
SystemDecorations="Full"
|
|
CanResize="False">
|
|
|
|
<Border Background="#0F1620" CornerRadius="10" Margin="0"
|
|
BorderBrush="#1B3A5C" BorderThickness="1">
|
|
<Border.Background>
|
|
<LinearGradientBrush StartPoint="0%,0%" EndPoint="100%,100%">
|
|
<GradientStop Color="#0F1620" Offset="0" />
|
|
<GradientStop Color="#0C1522" Offset="1" />
|
|
</LinearGradientBrush>
|
|
</Border.Background>
|
|
|
|
<Grid RowDefinitions="Auto,*,Auto" Margin="0">
|
|
<!-- Title Bar -->
|
|
<Border Grid.Row="0" Padding="20,14" CornerRadius="10,10,0,0"
|
|
Background="#0C1622" BorderBrush="#1A2F4A" BorderThickness="0,0,0,1">
|
|
<StackPanel Orientation="Horizontal" Spacing="10">
|
|
<Rectangle Width="3" Height="18" Fill="#4FC3F7" RadiusX="2" RadiusY="2" />
|
|
<TextBlock x:Name="TitleText" Text="编辑" FontSize="15" FontWeight="SemiBold" Foreground="#DDE4F0" />
|
|
</StackPanel>
|
|
</Border>
|
|
|
|
<!-- Form Content -->
|
|
<ScrollViewer Grid.Row="1" Margin="20,14,20,10">
|
|
<WrapPanel x:Name="FormPanel" />
|
|
</ScrollViewer>
|
|
|
|
<!-- Buttons -->
|
|
<Border Grid.Row="2" Padding="20,12" CornerRadius="0,0,10,10"
|
|
Background="#0A1018" BorderBrush="#1A2F4A" BorderThickness="0,1,0,0">
|
|
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right" Spacing="10">
|
|
<Button x:Name="CancelBtn" Content="取 消"
|
|
FontSize="12" Padding="24,8"
|
|
Background="#0F1F38" Foreground="#8B9BB5"
|
|
BorderBrush="#1A2F4A" BorderThickness="1"
|
|
CornerRadius="4" />
|
|
<Button x:Name="SaveBtn" Content="保 存"
|
|
FontSize="12" Padding="24,8"
|
|
CornerRadius="4">
|
|
<Button.Background>
|
|
<LinearGradientBrush StartPoint="0%,0%" EndPoint="0%,100%">
|
|
<GradientStop Color="#1976D2" Offset="0" />
|
|
<GradientStop Color="#1565C0" Offset="1" />
|
|
</LinearGradientBrush>
|
|
</Button.Background>
|
|
<Button.Foreground>
|
|
<LinearGradientBrush StartPoint="0%,0%" EndPoint="0%,100%">
|
|
<GradientStop Color="#FFFFFF" Offset="0" />
|
|
<GradientStop Color="#E0E0E0" Offset="1" />
|
|
</LinearGradientBrush>
|
|
</Button.Foreground>
|
|
</Button>
|
|
</StackPanel>
|
|
</Border>
|
|
</Grid>
|
|
</Border>
|
|
</Window>
|