检索选项卡标题内容
谁能帮我找出一种方法来检索 WPF 中选项卡标题的内容?
我想要的只是标题中的文本,这样我就可以将其分配给其他一些变量,但似乎没有任何方法可以获取它。
我对 WPF 非常陌生。但是在过去一个小时左右的时间里,谷歌搜索这个问题并没有返回任何有用的信息。
谢谢
Can anyone help me figure out a way to retreive the content of a tab header in WPF?
All I want is the text in the header so I can assign it to some other variable, but there doesn't seem to be any way of getting at it.
I am very new to WPF.. but the last hour or so googling this problem has not returned anything helpful.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
XAML:
访问文本:
访问内容控件:
XAML:
To access a Text:
To acces a Content Control:
您知道转换等是如何工作的,对吗?
TabItem.Header
< /a> 可以是任何东西,甚至是复杂的控件,因此如果您自己没有将其设置为字符串,您也无法将其作为字符串检索。You know how casting and such works, right?
TabItem.Header
can be anything, even complex controls so if you did not set this to a string yourself you cannot retrieve it as string like this either.使用TabItem.Header
例如,以下代码将第一个选项卡的
header
设置为“New header”:Use
TabItem.Header
e.g. following code will set
header
of the first tab to "New header":