37 lines
930 B
C#
37 lines
930 B
C#
// Copyright (c) 2017 schick Informatik
|
|
// Description: Plugin Control zur Auswahl der bool'schen Gruppenoperation
|
|
//
|
|
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
|
|
using bsmd.database;
|
|
|
|
namespace ENI2.Controls
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for ConditionGroupControl.xaml
|
|
/// </summary>
|
|
public partial class ConditionGroupControl : UserControl
|
|
{
|
|
private ConditionGroup _conditionGroup;
|
|
|
|
public ConditionGroupControl()
|
|
{
|
|
InitializeComponent();
|
|
Loaded += ConditionGroupControl_Loaded;
|
|
}
|
|
|
|
public ConditionGroup ConditionGroup
|
|
{
|
|
get { return this._conditionGroup; }
|
|
set { this._conditionGroup = value; this.DataContext = value; }
|
|
}
|
|
|
|
private void ConditionGroupControl_Loaded(object sender, RoutedEventArgs e)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|