问题标签 [textblock]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
7 回答
11111 浏览

wpf - 对齐控件中文本的底部

以下片段:

呈现以下内容:
替代文字

有什么方法可以设置标签的样式,以便它们的文本底部应该对齐?
我对 TextBlocks 也有同样的问题。

注意:由于我一直在为这个问题苦苦挣扎,请只发布您知道有效的某些答案。
我已经尝试过:VerticalAlignment、VerticalContentAlignment、Padding、Margin。还有什么我不知道的吗?

我读过这篇文章,但它没有谈论不同字体大小的场景。

更新:问题是,即使 Padding 设置为 0,在 ContentPresenter 区域内,字体周围仍有一个不确定的空间。这个空间因字体大小而异。如果我能控制这个空间,我会处于更好的境地。

谢谢

0 投票
2 回答
2267 浏览

wpf - How to set FontSize of a Textblock, which is in a Viewbox

I can't set the FontSize of the Text in a TextBlock, since the TextBox is in a Viewbox. Why?

I can set the FontSizes of all of the TextBlocks but not of the TextBlock which is in the Viewbox.

0 投票
1 回答
1406 浏览

c# - 带有文本文件链接的文本块

我正在为文本块设置不同的文本,具体取决于选择的控件作为为用户提供帮助的一种方式。

What I would like to do is in the code behind file, when one control is selected, provide a brief explanation in text, then provide a link to a text file within that textblock.

例如,它可能看起来像“您的选择应该是汽车制造商。单击此处查看列表”

我试图用超链接来做,但我运气不好。

有人知道该怎么做吗?

0 投票
2 回答
5132 浏览

wpf - 如何在单独的文本块中显示 WPF ValidationResult?

我正在尝试在 WPF 中使用带有验证规则的数据绑定控件的验证输入。我有一posintValidationRule 堂课:

在 XAML 中还有一个样式错误模板:

发生验证错误时,ValidationResultfrom posintValidationRuleclass 的文本出现在工具提示中(“Value must be an integer”等)。

我怎么能在 TextBlock 中显示相同的文本Validation.ErrorTemplate,如果出现错误,现在会说:“有错误”?

0 投票
4 回答
51231 浏览

html - 将超链接添加到文本块 wpf

问候,我在数据库中有一些文本,如下所示:

Lorem ipsum dolor sit amet, consectetur adipiscing elit。Duis tellus nisl, venenatis et pharetra ac, tempor sed sapien。Integer pellentesque blandit velit, in tempus urna semper sat amet。Duis mollis、libero ut consectetur interdum、massa tellus posuere nisi、eu aliquet elit lacus necerat。Praesent 一个commodo quam。**[a href=' http://somesite.com ']some site[/a]**Suspendisse at nisi sit amet massa molestie gravida feugiat ac sem。Phasellus ac mauris ipsum, vel auctor odio

我的问题是:如何Hyperlink在 a 中显示 a TextBlock?我不想为此目的使用 webBrowser 控件。我也不想使用这个控件: http: //www.codeproject.com/KB/WPF/htmltextblock.aspx

0 投票
2 回答
13756 浏览

wpf - 如何在wpf文本块中显示一行文本

我是 wpf 的新手,我想在 wpf 文本块的一行中显示文本。例如。:

TextBlock 默认以两行显示,

但我只希望它出现在这样的一行中“asafsf asfafaf”。我的意思是在一行中显示所有文本,即使文本中有多行
我该怎么办?

0 投票
5 回答
22985 浏览

wpf - WPF:通过字符串内容绑定可见性

好的,这是我的 XAML:

如果InstanceName是 null 或空字符串,我想要Visibility="Collapsed". 否则我要Visibility="Visible"。我该怎么做?

0 投票
2 回答
1002 浏览

wpf - WPF:TextBlock 中的部分数据绑定

所以这是我的TextBlock

{Binding Path=OpenProjects}使用数据绑定我想用and替换 1 和 2 {Binding Path=OpenIssues}。做这个的最好方式是什么?

PS我没有结婚TextBlock

0 投票
2 回答
12365 浏览

wpf - WPF:如何使用 DataTrigger 设置 TextBlock 的 Foreground 属性

这是我的 XAML:

这是我的错误信息:

在“ContentPresenter”类型上找不到静态成员“ForegroundProperty”。

sm:Severity 是我导入的枚举。

0 投票
1 回答
620 浏览

wpf - WPF:包装多部分文本

目前我正在使用 aTextBlock来显示带有图像的单行。

我的问题是:

  1. TextBlock做这种事情的正确方法是什么?
  2. 如何启用自动换行?