Axes2D.xaml 724 B

1234567891011121314
  1. <UserControl x:Class="CyberX8_Themes.UserControls.Axes2D"
  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:CyberX8_Themes.UserControls"
  7. mc:Ignorable="d"
  8. d:DesignHeight="200" d:DesignWidth="200" x:Name="axes" Loaded="axes_Loaded">
  9. <Grid>
  10. <Canvas Height="{Binding AxesHeight}" Width="{Binding AxesWidth}" x:Name="CanvasInPath">
  11. </Canvas>
  12. </Grid>
  13. </UserControl>