Xceed Toolkit for Maui v2.0 Documentation
IndeterminateSymbol Property
Example 


Xceed.Maui.Toolkit Assembly > Xceed.Maui.Toolkit Namespace > CheckBox Class : IndeterminateSymbol Property
Gets or sets the DataTemplate that will be used to define the checkmark when the CheckBox is in its Indeterminate state.
Syntax
'Declaration
 
Public Property IndeterminateSymbol As DataTemplate
'Usage
 
Dim instance As CheckBox
Dim value As DataTemplate
 
instance.IndeterminateSymbol = value
 
value = instance.IndeterminateSymbol
public DataTemplate IndeterminateSymbol {get; set;}
Remarks
 
Example
<xctk:CheckBox.IndeterminateSymbol>
  <DataTemplate>
    <Line X1="0"
          Y1="0"
          X2="5"
          Y2="0"
          Aspect="Uniform"
          StrokeThickness="3"
          Stroke="White"/>
  </DataTemplate>
</xctk:CheckBox.IndeterminateSymbol>
Requirements

Target Platforms: Windows 11, Windows 10, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

CheckBox Class
CheckBox Members