PageRenderTime 48ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/Main/src/Samples/v0.2/Tooltip/Window1.xaml

#
XAML | 18 lines | 16 code | 2 blank | 0 comment | 0 complexity | 1c4ea6ceb1510beb05d8cb2e69d705f2 MD5 | raw file
Possible License(s): CC-BY-SA-3.0
  1. <Window x:Class="SimpleTooltip.Window1"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://research.microsoft.com/DynamicDataDisplay/1.0"
  5. Title="Simple tooltips" Height="300" Width="300">
  6. <Grid>
  7. <Grid.RowDefinitions>
  8. <RowDefinition Height="Auto" />
  9. <RowDefinition Height="*"/>
  10. </Grid.RowDefinitions>
  11. <Button Content="Show/Hide markers" Click="Button_Click" Grid.Row="0"
  12. Width="110" Height="30" HorizontalAlignment="Left"/>
  13. <d:ChartPlotter Name="plotter" Grid.Row="1">
  14. </d:ChartPlotter>
  15. </Grid>
  16. </Window>