SusceptorControl.xaml 724 B

12345678910111213
  1. <UserControl x:Class="Aitex.Core.UI.Control.SusceptorControl"
  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. mc:Ignorable="d"
  7. d:DesignHeight="540" d:DesignWidth="540" x:Name="susceptorControl" Background="Transparent" >
  8. <Viewbox Width="{Binding ElementName=susceptorControl, Path=Width}" Height="{Binding ElementName=susceptorControl, Path=Height}" Stretch="Fill">
  9. <Canvas x:Name="layout"/>
  10. </Viewbox>
  11. </UserControl>