TopView.xaml 1003 B

12345678910111213141516
  1. <UserControl x:Class="Venus_MainPages.Views.TopView"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:Venus_MainPages.Views"
  7. xmlns:prism="http://prismlibrary.com/"
  8. prism:ViewModelLocator.AutoWireViewModel="True"
  9. mc:Ignorable="d"
  10. d:DesignHeight="100" d:DesignWidth="800">
  11. <StackPanel Background="{DynamicResource BottomFrame_BG}" Orientation="Horizontal">
  12. <TextBlock Style="{StaticResource textBlockStyle}" Text="{Binding Title}" FontSize="60" VerticalAlignment="Center" Margin="10,0,0,0" />
  13. <ToggleButton Style="{StaticResource ToggleButtonStyle1}" Margin="20,0,0,0" Height="100" Width="100"/>
  14. </StackPanel>
  15. </UserControl>