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


C# TextBlock.SetDefaultTextProperties方法代码示例

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


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

示例1: ToTextBlock

        public TextBlock ToTextBlock(string text, SyntaxTokenClassification classification) {

            var textBlock = new TextBlock { TextWrapping = TextWrapping.Wrap };

            var formatMap = _classificationFormatMapService.GetClassificationFormatMap("tooltip");
            textBlock.SetDefaultTextProperties(formatMap);

            var run = ToRun(text, classification, formatMap);

            textBlock.Inlines.Add(run);

            return textBlock;
        }
开发者ID:csharper2010,项目名称:Nav.Language.Extensions,代码行数:13,代码来源:SyntaxQuickinfoBuilderService.cs

示例2: CreateContent

        private FrameworkElement CreateContent(string eventName, ClassificationTypeMap classificationTypeMap)
        {
            var textBlock = new TextBlock { TextWrapping = TextWrapping.NoWrap };
            textBlock.SetDefaultTextProperties(classificationTypeMap.ClassificationFormatMapService.GetClassificationFormatMap("tooltip"));

            var eventNameRun = new Run(eventName + ";");
            eventNameRun.FontWeight = FontWeights.Bold;
            textBlock.Inlines.Add(eventNameRun);

            var pressTabRun = new Run(CSharpEditorResources.Press_TAB_to_insert);
            textBlock.Inlines.Add(pressTabRun);

            return textBlock;
        }
开发者ID:GuilhermeSa,项目名称:roslyn,代码行数:14,代码来源:EventHookupQuickInfoSource.cs

示例3: ToTextBlock

        public static TextBlock ToTextBlock(
            this IEnumerable<Inline> inlines,
            ClassificationTypeMap typeMap,
            string classificationFormatMap = null)
        {
            classificationFormatMap = classificationFormatMap ?? "tooltip";
            var formatMap = typeMap.ClassificationFormatMapService.GetClassificationFormatMap(classificationFormatMap);

            var textBlock = new TextBlock { TextWrapping = TextWrapping.Wrap };
            textBlock.SetDefaultTextProperties(formatMap);
            textBlock.Inlines.AddRange(inlines);

            return textBlock;
        }
开发者ID:tvsonar,项目名称:roslyn,代码行数:14,代码来源:TaggedTextExtensions.cs

示例4: ToTextBlock

        public static TextBlock ToTextBlock(this IEnumerable<SymbolDisplayPart> parts, ClassificationTypeMap typeMap)
        {
            var result = new TextBlock() { TextWrapping = TextWrapping.Wrap };

            var formatMap = typeMap.ClassificationFormatMapService.GetClassificationFormatMap("tooltip");
            result.SetDefaultTextProperties(formatMap);

            foreach (var part in parts)
            {
                result.Inlines.Add(part.ToRun(formatMap, typeMap));
            }

            return result;
        }
开发者ID:CAPCHIK,项目名称:roslyn,代码行数:14,代码来源:SymbolDisplayPartExtensions.cs

示例5: Create

        public FrameworkElement Create()
        {
            var documentationTextBlock = new TextBlock()
            {
                TextWrapping = TextWrapping.Wrap
            };

            var formatMap = _typeMap.ClassificationFormatMapService.GetClassificationFormatMap("tooltip");
            documentationTextBlock.SetDefaultTextProperties(formatMap);

            // If we have already computed the symbol documentation by now, update

            UpdateDocumentationTextBlock(documentationTextBlock);
            return documentationTextBlock;
        }
开发者ID:Rickinio,项目名称:roslyn,代码行数:15,代码来源:DocumentationCommentDeferredContent.cs

示例6: ToTextBlock

        public TextBlock ToTextBlock(SignalTriggerCodeModel codeModel) {

            var textBlock = new TextBlock { TextWrapping = TextWrapping.Wrap };
            var formatMap = _classificationFormatMapService.GetClassificationFormatMap("tooltip");

            textBlock.SetDefaultTextProperties(formatMap);

            //var nsRun = ToRun(codeModel.WflNamespace+".", SyntaxTokenClassification.Identifier, formatMap);
            //textBlock.Inlines.Add(nsRun);

            var typeRun = ToRun(codeModel.TaskCodeModel.WfsTypeName, SyntaxTokenClassification.TaskName, formatMap);
            textBlock.Inlines.Add(typeRun);

            var methodRun = ToRun("."+ codeModel.TriggerLogicMethodName + "()", SyntaxTokenClassification.Identifier, formatMap);
            textBlock.Inlines.Add(methodRun);

            return textBlock;
        }
开发者ID:IInspectable,项目名称:Nav.Language.Extensions,代码行数:18,代码来源:SyntaxQuickinfoBuilderService.cs

示例7: ToTextBlock

        public static TextBlock ToTextBlock(
            this IEnumerable<Inline> inlines,
            ClassificationTypeMap typeMap,
            string classificationFormatMap = null,
            bool wrap = true)
        {
            classificationFormatMap = classificationFormatMap ?? "tooltip";
            var formatMap = typeMap.ClassificationFormatMapService.GetClassificationFormatMap(classificationFormatMap);

            var textBlock = new TextBlock
            {
                TextWrapping = wrap ? TextWrapping.Wrap : TextWrapping.NoWrap,
                TextTrimming = wrap ? TextTrimming.None : TextTrimming.CharacterEllipsis
            };
            textBlock.SetDefaultTextProperties(formatMap);
            textBlock.Inlines.AddRange(inlines);

            return textBlock;
        }
开发者ID:natidea,项目名称:roslyn,代码行数:19,代码来源:TaggedTextExtensions.cs


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