Use buttons in SettingsView.

This commit is contained in:
Daniel Kraus
2015-08-12 17:54:23 +02:00
parent 6f65340ca5
commit e0b749382e
7 changed files with 29 additions and 10 deletions

View File

@ -45,7 +45,9 @@ namespace zaaReloaded2.ViewModels
{
return ((ControlElementBase)Element).CanHaveChildren;
}
}
}
public override string ToolTip { get { return Element.Label; } }
#endregion

View File

@ -39,6 +39,8 @@ namespace zaaReloaded2.ViewModels
get { return Element.Label; }
}
public abstract string ToolTip { get; }
#endregion
#region Constructors

View File

@ -46,6 +46,8 @@ namespace zaaReloaded2.ViewModels
/// </summary>
public ControlElementViewModel Parent { get; set; }
public override string ToolTip { get { return Element.Label; } }
#endregion
#region Commands