本文整理汇总了C#中MainViewModel.GetSubCategory方法的典型用法代码示例。如果您正苦于以下问题:C# MainViewModel.GetSubCategory方法的具体用法?C# MainViewModel.GetSubCategory怎么用?C# MainViewModel.GetSubCategory使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MainViewModel
的用法示例。
在下文中一共展示了MainViewModel.GetSubCategory方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ProcessInternalOptions
private void ProcessInternalOptions(MainViewModel model, UIOptionSubCategoryType subCategory)
{
var docProvs = subCategory.Options.Find(op => op.Name == "DocumentProviders") as UIOptionGroupType;
var defaultDocProv = subCategory.Options.Find(op => op.Name == "DefaultDocumentProvider") as UIOptionType;
StringOption defaultDocProvOpt = CreateShellOption(null, defaultDocProv) as StringOption;
model.AddOption(defaultDocProvOpt);
foreach (UIOptionGroupInstanceType instance in docProvs.OptionGroupInstances)
{
if (instance.Name == DefaultXmlReadVisitor.InstanceTemplateName)
{
continue;
}
if (instance.Name == "Offline Document Provider")
{
continue;
}
OptionGroupInstance shelloptiongroup = CreateShellOptionGroupInstance(null, instance);
BoolOption enabledOpt =
(from x in shelloptiongroup.SubOptions where x.Name == "Enabled" select x).FirstOrDefault() as BoolOption;
model.AddOption(enabledOpt);
if (IsFeatureEnabled(instance) || model.AppModel.IsAdmin)
{
DMSEnableOption newOpt = new DMSEnableOption(instance.Name, enabledOpt, defaultDocProvOpt)
{
Category = model.GetCategory("DMS"),
SubCategory = model.GetSubCategory("DMS", "General")
};
newOpt.IsEnabled = ShouldOptionBeEnabled(newOpt, model.AppModel.IsAdmin);
model.AddOption(newOpt);
}
}
}
示例2: ProcessSubCategory
private void ProcessSubCategory(MainViewModel model, Dictionary<string, AreaOption> areas, Category shellCategory,
UIOptionSubCategoryType subCategory)
{
Category shellSubCategory = model.GetSubCategory(shellCategory.Name, subCategory.Name) ??
BuildShellSubCategory(shellCategory, subCategory);
shellSubCategory.Model = model;
foreach (var option in subCategory.Options)
{
ProcessOption(model, areas, shellCategory, shellSubCategory, option);
}
}
示例3: LoadGroup
private static void LoadGroup(MainViewModel viewModel, OptionBaseType opt)
{
Category cat = viewModel.GetSubCategory(opt.CategoryRef, opt.SubCategoryRef);
if (cat == null)
return;
List<IOption> toRemove = new List<IOption>();
foreach (IOption existingopt in cat.Options)
{
if (existingopt is OptionGroupInstance)
toRemove.Add(existingopt);
}
foreach (IOption i in toRemove)
cat.Options.Remove(i);
UIOptionGroupType group = opt as UIOptionGroupType;
foreach (var inst in group.OptionGroupInstances)
{
OptionGroupInstance newGroup = OptionMapper.CreateShellOptionGroupInstance(cat, inst);
newGroup.IsDirty = true;
newGroup.Deploy = inst.Deploy;
newGroup.CanChangeDeploy = viewModel.AppModel.IsAdmin;
foreach (IOption subOpt in newGroup.SubOptions)
{
subOpt.IsDirty = true;
subOpt.Deploy = inst.Deploy;
if (subOpt is EncryptionOption)
{
(subOpt as EncryptionOption).Value = Workshare.Interop.Options.OptionApi.GetRawString(group.Name, inst.Name, subOpt.Name, subOpt.StringValue, _entropy);
}
}
cat.Options.Add(newGroup);
}
}