2020-03-13 22:35:20 +00:00
|
|
|
<Window x:Class="UWUVCI_AIO_WPF.UI.Windows.TitleKeys"
|
|
|
|
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:UWUVCI_AIO_WPF"
|
|
|
|
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
|
|
|
mc:Ignorable="d"
|
2020-06-10 20:19:43 +00:00
|
|
|
Title="MAIN" Width="1194.525" WindowStyle="None" materialDesign:ShadowAssist.CacheMode="{x:Null}" WindowStartupLocation="CenterOwner" Foreground="White" Background="LightGray" MouseDown="MoveWindow" ResizeMode="NoResize" Height="670" Loaded="Window_Loaded" Icon="/UWUVCI AIO WPF;component/a.ico" Closing="wind_Closing" Closed="wind_Closed">
|
2020-03-13 22:35:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-03-31 23:48:50 +00:00
|
|
|
<Grid DataContext="{StaticResource mvm}">
|
2020-04-28 23:40:54 +00:00
|
|
|
<Grid Margin="0,70,0,0">
|
|
|
|
|
|
|
|
|
2020-04-16 04:41:25 +00:00
|
|
|
<TextBlock x:Name="tb" Margin="572,174,563,70" TextWrapping="Wrap" FontSize="20" Height="142" HorizontalAlignment="Center" VerticalAlignment="Center" TextAlignment="Center" Foreground="Black" />
|
2020-05-04 16:20:21 +00:00
|
|
|
|
2020-05-06 21:53:52 +00:00
|
|
|
<WebBrowser HorizontalAlignment="Left" Height="600" VerticalAlignment="Top" Width="1195" Name="wb" LoadCompleted="wb_LoadCompleted" Navigating="wb_Navigating"/>
|
2020-05-04 16:20:21 +00:00
|
|
|
<Label Content="Loading Help... Please Wait" HorizontalAlignment="Left" Margin="430,281,0,0" VerticalAlignment="Top" FontSize="25" FontWeight="Bold" Name="load" Visibility="Hidden"/>
|
2020-04-30 15:01:41 +00:00
|
|
|
|
2020-03-13 22:35:20 +00:00
|
|
|
</Grid>
|
2020-04-28 23:40:54 +00:00
|
|
|
<Grid Height="70" VerticalAlignment="Top">
|
2020-03-13 22:35:20 +00:00
|
|
|
<Grid.Background>
|
|
|
|
|
|
|
|
<VisualBrush TileMode="Tile" Viewport="0,0,0.0965,1">
|
|
|
|
<VisualBrush.Visual>
|
2020-04-09 18:40:48 +00:00
|
|
|
<Image Source="/UI/Images/bg maybe wpf.png"></Image>
|
2020-03-13 22:35:20 +00:00
|
|
|
</VisualBrush.Visual>
|
|
|
|
</VisualBrush>
|
|
|
|
|
|
|
|
|
|
|
|
</Grid.Background>
|
2020-05-04 16:20:21 +00:00
|
|
|
<TextBlock Name="tbTitleBar" HorizontalAlignment="Left" Margin="0,19,0,0" TextWrapping="Wrap" Text="UWUVCI AIO - Help" VerticalAlignment="Top" FontSize="25" Width="1166" TextAlignment="Center"/>
|
2020-03-31 23:48:50 +00:00
|
|
|
</Grid>
|
2020-03-13 22:35:20 +00:00
|
|
|
|
2020-04-16 04:41:25 +00:00
|
|
|
|
2020-04-28 23:40:54 +00:00
|
|
|
<Button Content="Back" HorizontalAlignment="Left" Margin="1096,19,0,0" VerticalAlignment="Top" Width="83" Height="29" Click="Window_Close"/>
|
2020-04-16 04:41:25 +00:00
|
|
|
|
2020-03-13 22:35:20 +00:00
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Window>
|