This commit is contained in:
Alexander Smirnov 2015-02-25 19:53:19 +03:00
Родитель 6d76ede310
Коммит db14387a04
2 изменённых файлов: 18 добавлений и 2 удалений

Просмотреть файл

@ -17,7 +17,15 @@ namespace GraphX
/// <summary>
/// Action that will take place when LogicCore property is changed. Default: None.
/// </summary>
public LogicCoreChangedAction LogicCoreChangeAction { get; set; }
public LogicCoreChangedAction LogicCoreChangeAction
{
get { return (LogicCoreChangedAction) GetValue(LogicCoreChangeActionProperty); }
set { SetValue(LogicCoreChangeActionProperty, value); }
}
public static readonly DependencyProperty LogicCoreChangeActionProperty =
DependencyProperty.Register("LogicCoreChangeAction", typeof(LogicCoreChangedAction), typeof(GraphAreaBase), new PropertyMetadata(LogicCoreChangedAction.None));
/// <summary>
/// Gets or sets special mode for WinForms interoperability

Просмотреть файл

@ -22,7 +22,15 @@ namespace GraphX
/// <summary>
/// Action that will take place when LogicCore property is changed. Default: None.
/// </summary>
public LogicCoreChangedAction LogicCoreChangeAction { get; set; }
public LogicCoreChangedAction LogicCoreChangeAction
{
get { return (LogicCoreChangedAction)GetValue(LogicCoreChangeActionProperty); }
set { SetValue(LogicCoreChangeActionProperty, value); }
}
public static readonly DependencyProperty LogicCoreChangeActionProperty =
DependencyProperty.Register("LogicCoreChangeAction", typeof(LogicCoreChangedAction), typeof(GraphAreaBase), new PropertyMetadata(LogicCoreChangedAction.None));
public GraphAreaBase()
{