123456789101112131415161718192021 |
- <UserControl x:Class="CyberX8_Themes.UserControls.PowerSupplierStepControl"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:control="clr-namespace:MECF.Framework.UI.Core.Control;assembly=MECF.Framework.UI.Core"
- xmlns:local="clr-namespace:CyberX8_Themes.UserControls"
- mc:Ignorable="d" Name="self"
- d:DesignHeight="35" d:DesignWidth="280">
- <Grid>
- <Label Grid.Column="0" Content="Current" VerticalContentAlignment="Center" HorizontalAlignment="Left" Margin="2,0,0,0"/>
- <control:NumbericTextBox Width="54" Height="25" Value="{Binding ElementName=self,Path=Current,StringFormat={}{0:F3},Mode=TwoWay}" HorizontalAlignment="Left"
- Margin="59,5,0,5" />
- <Label Content="time" VerticalContentAlignment="Center" HorizontalAlignment="Left" Margin="116,0,0,0"/>
- <control:IntegerTextBox Width="27" Height="25" Value="{Binding ElementName=self,Path=Hour,Mode=TwoWay}" HorizontalAlignment="Left" Margin="152,5,0,5" />
- <control:IntegerTextBox Width="27" Height="25" Value="{Binding ElementName=self,Path=Minute,Mode=TwoWay}" HorizontalAlignment="Left" Margin="182,5,0,5" />
- <control:IntegerTextBox Width="27" Height="25" Value="{Binding ElementName=self,Path=Second,Mode=TwoWay}" HorizontalAlignment="Left" Margin="212,5,0,5" />
- <control:IntegerTextBox Width="34" Height="25" Value="{Binding ElementName=self,Path=MicroSecond,Mode=TwoWay}" HorizontalAlignment="Left" Margin="242,5,0,5" />
- </Grid>
- </UserControl>
|