Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
490
the code shown in steps to reproduce, the <Label> & infragistics controls don't align within a StackPanel at the same horizontal position
posted

the code shown in steps to reproduce, the <Label> & infragistics controls don't align within a StackPanel at the same horizontal position

In the following code Label & the checkbox don't align in the same Horizontal Location.

<Window x:Class="WpfApplication1.Window5"

xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

Title="Window5" Height="300" Width="300" xmlns:igEditors="http://infragistics.com/Editors">

<Grid>

<StackPanel Orientation="Horizontal">

<Label>Hello:</Label>

<igEditors:XamCheckEditor Height="18" Name="xamCheckEditor1" Width="98" />

<my:LabelTool Height="19" Name="labelTool1" Width="61" xmlns:my="clr-namespace:Infragistics.Windows.Ribbon;assembly=Infragistics3.Wpf.Ribbon.v7.2" />

</StackPanel>

 

</Grid>

</Window>