Click or drag to resize

Win Controls

SOWI Framework Windows user interface controls

User interface controls for data edit

SOWIWin.Helper.ControlsEditTextBox

SOWIWin.Helper.ControlsEditCheckBox

SOWIWin.Helper.ControlsEditComboBox

Implementation

  1. Add assembly reference SOWIWin.Helper into project

  2. Declaration assembly into code header

    Example in a WPF page object (xaml file)

    C#
    <Page x:Class="ExampleWin.Pages.PageEditControls"
          ...
          xmlns:myControls="clr-namespace:SOWIWin.Helper.Controls;assembly=SOWIWin.Helper"
          ...>
  3. Use the objects of edit

    Example WPF xaml

    C#
    <myControls:EditCheckBox x:Name="EditVordruck" />
    <myControls:EditComboBox x:Name="EditStandort" OnChanged="EditStandort_OnChanged" />
    <myControls:EditTextBox  x:Name="EditOrtDatum" />
See Also