本文整理汇总了C#中AttributeTableBuilder类的典型用法代码示例。如果您正苦于以下问题:C# AttributeTableBuilder类的具体用法?C# AttributeTableBuilder怎么用?C# AttributeTableBuilder使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
AttributeTableBuilder类属于命名空间,在下文中一共展示了AttributeTableBuilder类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: AddAttributes
/// <summary>
/// Provide a place to add custom attributes without creating a AttributeTableBuilder subclass.
/// </summary>
/// <param name="builder">The assembly attribute table builder.</param>
protected override void AddAttributes(AttributeTableBuilder builder)
{
//// Note: duplicated here due to change in extensibility framework for Blend 3
builder.AddCallback(typeof(AllergiesLabel), b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(typeof(ColumnManager), b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(typeof(ConceptListBox), b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(typeof(CuiToggleButton), b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(typeof(DataBoundCell), b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(typeof(DataBoundRowGrouping), b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(typeof(DataSelector), b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(typeof(DataSelectorItem), b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(typeof(DecoratorItemContainer), b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(typeof(DecoratorItemsControl), b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(typeof(DecoratorItemsWrapPanel), b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(typeof(FilterControl), b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(typeof(GraphBase), b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(typeof(GraphPoint), b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(typeof(GroupingControl), b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(typeof(Label), b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(typeof(LookAheadView), b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(typeof(LookBehindView), b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(typeof(MainView), b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(typeof(MatchingTermItemContainer), b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(typeof(MatchingTermItemsControl), b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(typeof(PanelWrapper), b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(typeof(TermItem), b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(typeof(LevelOfDetailTick), b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(typeof(TimeGraphBase), b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(typeof(TimeIBarGraph), b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(true))); // true required as inherits false from parent
builder.AddCallback(typeof(TimeLineGraph), b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(true))); // true required as inherits false from parent
builder.AddCallback(typeof(TimeActivityGraph), b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(true))); // true required as inherits false from parent
builder.AddCallback(typeof(VisualFocusLine), b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(typeof(WaitAnimation), b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(typeof(MedicationLabel), b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
}
示例2: AddAttributes
/// <summary>
/// Provide a place to add custom attributes without creating a AttributeTableBuilder subclass.
/// </summary>
/// <param name="builder">The assembly attribute table builder.</param>
protected override void AddAttributes(AttributeTableBuilder builder)
{
// Note: everything added here must be duplicated in VisualStudio.Design as well!
builder.AddCallback(
typeof(SSWCP.LinearClipper),
b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
}
示例3: AddAttributes
protected override void AddAttributes(AttributeTableBuilder builder)
{
builder.AddCallback(
typeof(SSWCDC.AreaDataPoint),
b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(
typeof(SSWCDC.BarDataPoint),
b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(
typeof(SSWCDC.BubbleDataPoint),
b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(
typeof(SSWCDC.ColumnDataPoint),
b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(
typeof(SSWCDC.LineDataPoint),
b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(
typeof(SSWCDC.PieDataPoint),
b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(
typeof(SSWCDC.ScatterDataPoint),
b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(
typeof(SSWCDC.LegendItem),
b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(
typeof(SSWCDC.DataPointSeriesDragDropTarget),
b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
}
示例4: AddMonthViewDesigners
private void AddMonthViewDesigners()
{
var builder = new AttributeTableBuilder();
builder.AddCustomAttributes(typeof (FXMonthView), new FeatureAttribute(typeof (MonthViewDesignAdorner)));
MetadataStore.AddAttributeTable(builder.CreateTable());
}
示例5: AddTables
private static void AddTables(AttributeTableBuilder builder)
{
Debug.Assert(builder != null, "AddTables is called with null parameter!");
Assembly asm = Assembly.GetExecutingAssembly();
foreach (Type t in asm.GetTypes())
{
if (t.IsSubclassOf(typeof(AttributeTableBuilder)))
{
try
{
AttributeTableBuilder atb = (AttributeTableBuilder)Activator.CreateInstance(t);
builder.AddTable(atb.CreateTable());
}
catch (Exception e)
{
if (e.IsFatal())
{
throw;
}
Debug.Assert(false, string.Format(CultureInfo.InvariantCulture, "Exception in AddTables method: {0}", e));
}
}
}
}
示例6: AddAttributes
/// <summary>
/// Provide a place to add custom attributes without creating a AttributeTableBuilder subclass.
/// </summary>
/// <param name="builder">The assembly attribute table builder.</param>
protected override void AddAttributes(AttributeTableBuilder builder)
{
builder.AddCallback(
typeof(SSWC.ChildWindow),
b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(
typeof(SSWC.TreeViewItem),
b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(
typeof(SSWCP.CalendarButton),
b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(
typeof(SSWCP.CalendarDayButton),
b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(
typeof(SSWCP.CalendarItem),
b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(
typeof(SSWCP.DatePickerTextBox),
b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(
typeof(SSWC.TabItem),
b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
// duplicated from Design
builder.AddCallback(
typeof(SSWCP.TabPanel),
b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
}
示例7: AddBaseDefinitionAttributes
private static void AddBaseDefinitionAttributes(AttributeTableBuilder builder)
{
builder.AddCallback(typeof(BaseDefinition),
b =>
{
// BaseDefinition properties
b.AddCustomAttributes("AllowDrop", new BrowsableAttribute(false));
b.AddCustomAttributes("BindingGroup", new BrowsableAttribute(false));
b.AddCustomAttributes("CommandBindings", new BrowsableAttribute(false));
b.AddCustomAttributes("ContextMenu", new BrowsableAttribute(false));
b.AddCustomAttributes("Cursor", new BrowsableAttribute(false));
b.AddCustomAttributes("DataContext", new BrowsableAttribute(false));
b.AddCustomAttributes("FocusVisualStyle", new BrowsableAttribute(false));
b.AddCustomAttributes("Focusable", new BrowsableAttribute(false));
b.AddCustomAttributes("ForceCursor", new BrowsableAttribute(false));
b.AddCustomAttributes("InputScope", new BrowsableAttribute(false));
b.AddCustomAttributes("IsEnabled", new BrowsableAttribute(false));
b.AddCustomAttributes("Language", new BrowsableAttribute(false));
b.AddCustomAttributes("Name", new BrowsableAttribute(false));
b.AddCustomAttributes("OverridesDefaultStyle", new BrowsableAttribute(false));
b.AddCustomAttributes("Resources", new BrowsableAttribute(false));
b.AddCustomAttributes("Style", new BrowsableAttribute(false));
b.AddCustomAttributes("ToolTip", new BrowsableAttribute(false));
});
}
示例8: AddAttributes
protected override void AddAttributes(AttributeTableBuilder builder)
{
// duplicated from .Design
//MessageBox.Show("MetadataRegistration AddAttributes");
/*builder.AddCallback(
typeof(SSWCD.Interpolator),
b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(
typeof(SSWCDC.AxisLabel),
b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(
typeof(SSWCDC.DateTimeAxisLabel),
b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(
typeof(SSWCDCP.EdgePanel),
b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));*/
//builder.AddCallback(
// typeof(CustomControl1),
// b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
//builder.AddCustomAttributes(typeof(CustomControl1), new FeatureAttribute(typeof(OpacitySliderAdornerProvider)));
builder.AddTable(new CustomControl1Metadata().CreateTable());
/*builder.AddCallback(
typeof(SSWCDC.NumericAxisLabel),
b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(
typeof(SSWCD.Title),
b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
// VisualStudio.Design's own stuff
builder.AddCallback(
typeof(SSWCDC.AreaDataPoint),
b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(
typeof(SSWCDC.BarDataPoint),
b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(
typeof(SSWCDC.BubbleDataPoint),
b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(
typeof(SSWCDC.ColumnDataPoint),
b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(
typeof(SSWCDC.LineDataPoint),
b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(
typeof(SSWCDC.PieDataPoint),
b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(
typeof(SSWCDC.ScatterDataPoint),
b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(
typeof(SSWCDC.LegendItem),
b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));*/
}
示例9: AddAttributes
/// <summary>
/// Provide a place to add custom attributes without creating a AttributeTableBuilder subclass.
/// </summary>
/// <param name="builder">The assembly attribute table builder.</param>
protected override void AddAttributes(AttributeTableBuilder builder)
{
builder.AddCallback(typeof(SSWC.DataForm), b => b.AddCustomAttributes(new ToolboxCategoryAttribute("Data", true)));
builder.AddCallback(typeof(SSWC.DataField), b => b.AddCustomAttributes(new ToolboxCategoryAttribute("Data", true)));
// Note: everything added here must be duplicated in VisualStudio.Design as well!
builder.AddCallback(typeof(SSWC.DataForm), b => b.AddCustomAttributes(new DefaultBindingPropertyAttribute(Extensions.GetMemberName<SSWC.DataForm>(x => x.ItemsSource))));
}
示例10: Register
public void Register()
{
AttributeTableBuilder tableBuilder = new AttributeTableBuilder();
tableBuilder.AddCustomAttributes(typeof(PieChart), new FeatureAttribute(typeof(PieChartDesignModeValueProvider)));
MetadataStore.AddAttributeTable(tableBuilder.CreateTable());
}
示例11: BuildAttributeTable
/// <summary>
/// Builds the design time attribute table.
/// </summary>
/// <returns>Custom attribute table.</returns>
private static AttributeTable BuildAttributeTable()
{
AttributeTableBuilder builder = new AttributeTableBuilder();
AddAttributes(builder);
return builder.CreateTable();
}
示例12: AddAttributes
/// <summary>
/// Provide a place to add custom attributes without creating a AttributeTableBuilder subclass.
/// </summary>
/// <param name="builder">The assembly attribute table builder.</param>
protected override void AddAttributes(AttributeTableBuilder builder)
{
builder.AddCallback(
typeof(SSWC.AccordionItem),
b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
builder.AddCallback(
typeof(SSWC.TransitioningContentControl),
b => b.AddCustomAttributes(new ToolboxBrowsableAttribute(false)));
}
示例13: AddAttributes
/// <summary>
/// Add design time attributes.
/// </summary>
/// <param name="builder">The assembly attribute table builder.</param>
private static void AddAttributes(AttributeTableBuilder builder)
{
builder.AddCustomAttributes(
typeof(SignInButton),
new Attribute[] {
new DefaultPropertyAttribute("ClientId"),
new DefaultEventAttribute("SessionChanged"),
new ToolboxBrowsableAttribute(true),
new ToolboxCategoryAttribute(LiveServicesCategory),
new ToolboxTabNameAttribute(LiveServicesCategory)});
EditorBrowsableAttribute browsableAlways = new EditorBrowsableAttribute(EditorBrowsableState.Always);
CategoryAttribute categoryLive = new CategoryAttribute(LiveServicesCategory);
DescriptionAttribute description = new DescriptionAttribute(StringResources.DescriptionBrandingType);
builder.AddCustomAttributes(
typeof(SignInButton),
"Branding",
new Attribute[] { browsableAlways, categoryLive, description });
description = new DescriptionAttribute(StringResources.DescriptionClientId);
builder.AddCustomAttributes(
typeof(SignInButton),
"ClientId",
new Attribute[] { browsableAlways, categoryLive, description });
description = new DescriptionAttribute(StringResources.DescriptionRedirectUri);
builder.AddCustomAttributes(
typeof(SignInButton),
"RedirectUri",
new Attribute[] { browsableAlways, categoryLive, description });
description = new DescriptionAttribute(StringResources.DescriptionScopes);
DefaultValueAttribute defaultValue = new DefaultValueAttribute("wl.signin");
builder.AddCustomAttributes(
typeof(SignInButton),
"Scopes",
new Attribute[] { browsableAlways, categoryLive, description, defaultValue });
description = new DescriptionAttribute(StringResources.DescriptionTextType);
builder.AddCustomAttributes(
typeof(SignInButton),
"TextType",
new Attribute[] { browsableAlways, categoryLive, description });
description = new DescriptionAttribute(StringResources.DescriptionSigninText);
builder.AddCustomAttributes(
typeof(SignInButton),
"SignInText",
new Attribute[] { browsableAlways, categoryLive, description });
description = new DescriptionAttribute(StringResources.DescriptionSignoutText);
builder.AddCustomAttributes(
typeof(SignInButton),
"SignOutText",
new Attribute[] { browsableAlways, categoryLive, description });
}
示例14: BuildAttributeTable
/// <summary>
/// Build design time metadata attribute table.
/// </summary>
/// <returns>Custom attribute table.</returns>
protected virtual AttributeTable BuildAttributeTable()
{
AttributeTableBuilder builder = new AttributeTableBuilder();
AddDescriptions(builder);
AddAttributes(builder);
AddTables(builder);
return builder.CreateTable();
}
示例15: BuildAttributeTable
/// <summary>
/// Build design time metadata attribute table.
/// </summary>
/// <returns>Custom attribute table.</returns>
protected virtual AttributeTable BuildAttributeTable()
{
AttributeTableBuilder builder = new AttributeTableBuilder();
AddDescriptions(builder);
AddAttributes(builder);
AddTables(builder, this);
masterMetadataTable = builder.CreateTable();
return masterMetadataTable;
}