| 1234567891011121314151617181920212223 |
- <UserControl x:Class="MuchInfo.Chart.WPF.Controls.Utilities.MainMenuButton"
- 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"
- mc:Ignorable="d">
- <Border x:Name="borderHover"
- HorizontalAlignment="Stretch"
- VerticalAlignment="Stretch"
- Background="Transparent"
- BorderThickness="1"
- CornerRadius="3"
- MouseEnter="LayoutRoot_MouseEnter"
- MouseLeave="LayoutRoot_MouseLeave"
- MouseLeftButtonDown="LayoutRoot_MouseLeftButtonDown">
- <TextBlock x:Name="lblMain"
- Margin="9,4,9,4"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- FontFamily="Arial"
- Text="File" />
- </Border>
- </UserControl>
|