TimeSpanButton.xaml 764 B

1234567891011121314151617
  1. <UserControl x:Class="MuchInfo.Chart.WPF.Controls.QuickTimeSpan.TimeSpanButton"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. mc:Ignorable="d">
  7. <Border x:Name="LayoutRoot"
  8. MinWidth="25"
  9. Background="LightCyan"
  10. BorderBrush="Gray"
  11. BorderThickness="1"
  12. CornerRadius="3"
  13. MouseLeftButtonDown="LayoutRoot_MouseLeftButtonDown"
  14. Padding="5,2">
  15. <TextBlock x:Name="lblMain" />
  16. </Border>
  17. </UserControl>