当前位置: 首页>>代码示例>>C#>>正文


C# Label.GetDecorator方法代码示例

本文整理汇总了C#中Label.GetDecorator方法的典型用法代码示例。如果您正苦于以下问题:C# Label.GetDecorator方法的具体用法?C# Label.GetDecorator怎么用?C# Label.GetDecorator使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Label的用法示例。


在下文中一共展示了Label.GetDecorator方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: WriteNamespaces

 /// <summary>
 /// This is used to apply <c>Decorator</c> objects to the
 /// provided node before it is written. Application of decorations
 /// before the node is written allows namespaces and comments to be
 /// applied to the node. Decorations such as this do not affect the
 /// overall structure of the XML that is written.
 /// </summary>
 /// <param name="node">
 /// this is the node that decorations are applied to
 /// </param>
 /// <param name="type">
 /// this is the type to acquire the decoration for
 /// </param>
 /// <param name="label">
 /// this contains the primary decorator to be used
 /// </param>
 public void WriteNamespaces(OutputNode node, Class type, Label label) {
    Decorator primary = context.GetDecorator(type);
    Decorator decorator = label.GetDecorator();
    decorator.decorate(node, primary);
 }
开发者ID:ngallagher,项目名称:simplexml,代码行数:21,代码来源:Composite.cs

示例2: WriteAttribute

 /// <summary>
 /// This write method is used to set the value of the provided object
 /// as an attribute to the XML element. This will acquire the string
 /// value of the object using <c>toString</c> only if the
 /// object provided is not an enumerated type. If the object is an
 /// enumerated type then the <c>Enum.name</c> method is used.
 /// </summary>
 /// <param name="value">
 /// this is the value to be set as an attribute
 /// </param>
 /// <param name="node">
 /// this is the XML element to write the attribute to
 /// </param>
 /// <param name="label">
 /// the label that contains the contact details
 /// </param>
 public void WriteAttribute(OutputNode node, Object value, Label label) {
    if(value != null) {
       Decorator decorator = label.GetDecorator();
       String name = label.GetName(context);
       String text = factory.getText(value);
       OutputNode done = node.setAttribute(name, text);
       decorator.decorate(done);
    }
 }
开发者ID:ngallagher,项目名称:simplexml,代码行数:25,代码来源:Composite.cs


注:本文中的Label.GetDecorator方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。