-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMainWindow.xaml
20 lines (20 loc) · 1017 Bytes
/
MainWindow.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Window x:Class="AwqatSalaat.Preview.MainWindow"
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:ui="clr-namespace:AwqatSalaat.UI;assembly=AwqatSalaat"
xmlns:lib="clr-namespace:AwqatSalaat.UI.Views;assembly=AwqatSalaat"
mc:Ignorable="d"
Title="MainWindow" SizeToContent="WidthAndHeight" ResizeMode="NoResize">
<Window.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ui:ThemeDictionary />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Window.Resources>
<Grid d:Background="#192025" Background="{DynamicResource ThemeColors.DefaultAcrylicTintBrush}" MaxWidth="118" Height="40">
<lib:WidgetSummary/>
</Grid>
</Window>