本文整理汇总了C#中System.Windows.Controls.MenuItem.NotSet方法的典型用法代码示例。如果您正苦于以下问题:C# MenuItem.NotSet方法的具体用法?C# MenuItem.NotSet怎么用?C# MenuItem.NotSet使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.Controls.MenuItem
的用法示例。
在下文中一共展示了MenuItem.NotSet方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: TaskSetIcon
static void TaskSetIcon(MenuItem menuItem)
{
if (menuItem.NotSet(MenuItem.IconProperty))
{
object o = menuItem.Tag;
if (o == null)
return;
ImageSource source =
o is FindOptionsBase ? Finder.Manager.GetFindIcon(((FindOptionsBase)o).QueryName, false) : null;
menuItem.Icon = source.ToSmallImage();
}
}
示例2: TaskSetHeader
public static void TaskSetHeader(MenuItem menuItem)
{
if (menuItem.NotSet(MenuItem.HeaderProperty))
{
object o = menuItem.Tag;
if (o == null)
return;
if (o is FindOptionsBase)
menuItem.Header = QueryUtils.GetNiceName(((FindOptionsBase)o).QueryName);
else if (o is Type)
menuItem.Header = ((Type)o).NicePluralName();
else if (o is Enum)
menuItem.Header = ((Enum)o).NiceToString();
else
menuItem.Header = o.ToString();
}
}
示例3: MenuManager_TasksQueries
static void MenuManager_TasksQueries(MenuItem menuItem)
{
if (menuItem.NotSet(MenuItem.VisibilityProperty))
{
object tag = menuItem.Tag;
if (tag == null)
return;
object queryName =
tag is Type ? null : //maybe a type but only if in FindOptions
tag is FindOptionsBase ? ((FindOptionsBase)tag).QueryName :
tag;
if (queryName != null && Finder.Manager.QuerySettings.ContainsKey(queryName))
{
if (!GetAllowed(queryName))
menuItem.Visibility = Visibility.Collapsed;
}
}
}
示例4: MenuManager_TasksTypes
static void MenuManager_TasksTypes(MenuItem menuItem)
{
if (menuItem.NotSet(MenuItem.VisibilityProperty))
{
object tag = menuItem.Tag;
if (tag == null)
return;
Type type = tag as Type;
if (type != null && Navigator.Manager.EntitySettings.ContainsKey(type))
{
if (GetAllowed(type).MaxUI() < TypeAllowedBasic.Read)
menuItem.Visibility = Visibility.Collapsed;
}
}
}