Commit e08ffc71 by liulongfei

修改iconbutton

parent 27646a66
...@@ -44,6 +44,25 @@ namespace VIZ.Framework.Common ...@@ -44,6 +44,25 @@ namespace VIZ.Framework.Common
#endregion #endregion
#region IconHover -- 悬停图标
/// <summary>
/// 悬停图标
/// </summary>
public ImageSource IconHover
{
get { return (ImageSource)GetValue(IconHoverProperty); }
set { SetValue(IconHoverProperty, value); }
}
/// <summary>
/// Using a DependencyProperty as the backing store for IconHover. This enables animation, styling, binding, etc...
/// </summary>
public static readonly DependencyProperty IconHoverProperty =
DependencyProperty.Register("IconHover", typeof(ImageSource), typeof(IconButton), new PropertyMetadata(null));
#endregion
#region IconWidth -- 图标宽度 #region IconWidth -- 图标宽度
/// <summary> /// <summary>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment