Chart.xaml 881 B

1234567891011121314151617
  1. <My:MWindow xmlns:My="clr-namespace:MyWPFControl.Controls;assembly=MyWPFControl"
  2. x:Class="B20UVLog.Windows.Chart"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  7. xmlns:local="clr-namespace:B20UVLog.Windows" xmlns:viewmodels="clr-namespace:B20UVLog.ViewModels"
  8. mc:Ignorable="d"
  9. Title="Axis Data 图表" Height="600" Width="1000"
  10. WindowStyle="ToolWindow">
  11. <Window.DataContext>
  12. <viewmodels:AxisDataViewModel/>
  13. </Window.DataContext>
  14. <Grid>
  15. <WebBrowser x:Name="WBrowser" Height="480" Width="800" LoadCompleted="WBrowser_LoadCompleted"/>
  16. </Grid>
  17. </My:MWindow>