PcControl.xaml 909 B

12345678910111213
  1. <UserControl x:Class="Aitex.Core.UI.Control.PcControl"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. Height="42" Width="74">
  5. <UserControl.RenderTransform>
  6. <RotateTransform x:Name="rotateTransform" Angle="0" CenterX="35" CenterY="21"/>
  7. </UserControl.RenderTransform>
  8. <Canvas MouseLeftButtonUp="Canvas_MouseLeftButtonUp" Background="Transparent">
  9. <Rectangle Width="74" Height="42" Fill="White" RadiusX="5" RadiusY="5" StrokeThickness="2" Stroke="Black"/>
  10. <Label Content="{Binding ElementName=self, Path=DeviceData.FeedBack}" ContentStringFormat="F1" FontFamily="Arial,SimSun" FontSize="16" HorizontalContentAlignment="Right" x:Name="labelValue" Margin="-6.2,-2,-2.3,0" Foreground="Black" Canvas.Left="11" Width="64" Height="29" Canvas.Top="8"></Label>
  11. </Canvas>
  12. </UserControl>