mirror of
https://github.com/VitalickS/BrightSharp.Toolkit.git
synced 2026-03-21 02:21:15 +00:00
22 lines
944 B
XML
22 lines
944 B
XML
<Window x:Class="BrightSharp.Ui.Tests.CustomWindow"
|
|
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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:bs="http://schemas.brightsharp.com/developer"
|
|
xmlns:local="clr-namespace:BrightSharp.Ui.Tests"
|
|
mc:Ignorable="d" ResizeMode="CanResizeWithGrip"
|
|
WindowStyle="ToolWindow"
|
|
Height="640" Width="1000" Style="{DynamicResource BrightSharpWindowStyle}">
|
|
<bs:MarkupExtensionProperties.Header>
|
|
<Grid>
|
|
<TextBlock>Custom WINDOW (BrightSharpWindowStyle)</TextBlock>
|
|
</Grid>
|
|
</bs:MarkupExtensionProperties.Header>
|
|
<Window.Resources>
|
|
</Window.Resources>
|
|
<Label>
|
|
TEST (Dev) WINDOW STYLE (CONTENT)
|
|
</Label>
|
|
</Window>
|