30 lines
1.6 KiB
XML
30 lines
1.6 KiB
XML
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:HiiSheWpf="clr-namespace:HiiShe.WPFUI.Controls" >
|
|
<Style TargetType="HiiSheWpf:HSWindow">
|
|
<Setter Property="AllowsTransparency" Value="true"/>
|
|
<Setter Property="Background" Value="Transparent"/>
|
|
<!--<Setter Property="ResizeMode" Value="CanResizeWithGrip"/>-->
|
|
<Setter Property="WindowStyle" Value="None"/>
|
|
<Setter Property="Template">
|
|
<Setter.Value>
|
|
<ControlTemplate TargetType="HiiSheWpf:HSWindow">
|
|
<Grid Margin="5">
|
|
<Rectangle Fill="{DynamicResource {x:Static SystemColors.WindowBrushKey}}" >
|
|
<Rectangle.Effect>
|
|
<DropShadowEffect BlurRadius="10" ShadowDepth="0"/>
|
|
</Rectangle.Effect>
|
|
</Rectangle>
|
|
<Border Background="{TemplateBinding Background}"
|
|
BorderBrush="{TemplateBinding BorderBrush}"
|
|
BorderThickness="{TemplateBinding BorderThickness}"
|
|
Padding="{TemplateBinding Margin}"
|
|
SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}">
|
|
<ContentPresenter />
|
|
</Border>
|
|
</Grid>
|
|
</ControlTemplate>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
</ResourceDictionary> |