Files
BrightSharp.Toolkit/BrightSharp.Ui.Tests/CustomWindow.xaml

21 lines
911 B
Plaintext
Raw Normal View History

2017-02-18 00:15:59 +03:00
<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"
Height="640" Width="1000" Style="{DynamicResource BrightSharpWindowStyle}">
2017-02-18 00:15:59 +03:00
<bs:MarkupExtensionProperties.Header>
<Grid>
<TextBlock>Custom WINDOW (BrightSharpWindowStyle)</TextBlock>
2017-02-18 00:15:59 +03:00
</Grid>
</bs:MarkupExtensionProperties.Header>
<Window.Resources>
</Window.Resources>
<Label>
TEST (Dev) WINDOW STYLE (CONTENT)
</Label>
</Window>