-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainWindow.xaml
16 lines (16 loc) · 957 Bytes
/
MainWindow.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<Window x:Class="RngHelper.MainWindow"
x:Name="RngWindow"
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:local="clr-namespace:RngHelper"
mc:Ignorable="d"
Title="RngHelper" Height="75" Width="75" ResizeMode="CanResize" Topmost="True" WindowStyle="None" MouseDown="Window_MouseDown">
<Grid Background="{Binding BackgroundColor}">
<Grid.RowDefinitions>
<RowDefinition Height="*"></RowDefinition>
</Grid.RowDefinitions>
<TextBlock x:Name="txtBox" Grid.Row="0" TextAlignment="Center" Padding="5" VerticalAlignment="Center" FontWeight="Bold" Text="{Binding Random}" Background="{Binding BackgroundColor}"></TextBlock>
</Grid>
</Window>