зеркало из https://github.com/stride3d/GraphX.git
Made'em as dependencies
This commit is contained in:
Родитель
6d76ede310
Коммит
db14387a04
|
@ -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()
|
||||
{
|
||||
|
|
Загрузка…
Ссылка в новой задаче