WPF文字顯示屬性

2021-08-25 05:39:41 字數 902 閱讀 7093

"layoutroot"

background="white">

fontsize——字型大小

foreground——文字前景色

text="資訊顯示控制項示例——textblock" margin="10,5,0,0"

fontsize="18"

fontweight="bold" foreground="#ffbe4d4d"/>

text="1、顯示紅色的文字" foreground="red" canvas.left="10" canvas.top="40"/>

text="2、顯示帶雙引號"textblock"文字" canvas.left="10" canvas.top="60"/>

fontstretch——字間距

text="3、文字帶下劃線" textdecorations="underline"

fontstretch="normal"

fontsize="16" canvas.left="10" canvas.top="80"/>

textalignment——水平對齊方式

text="4、多行文字顯示,當文字的長度超過textblock控制項的寬度將自動換行。"

textalignment="left" lineheight="20" width="200"

left="10" canvas.top="160" fontstretch="ultraexpanded">

5、不通過text屬性設定文字,直接在textblock容器中放置

left="10" canvas.top="180" fontstretch="ultracondensed">

6、不通過text屬性設定文字,直接在textblock容器中放置

WPF 控制項屬性

1 高度和寬度 不同尺寸的預設值 minheight maxheight height minwidth maxwidth width 0infinity nan auto 自動 其他尺寸 desiredsize rendersize actualheight actualwidth 2 邊框距離 ...

WPF 依賴屬性

原文 wpf 依賴屬性 屬性和事件是.net抽象模型的核心部分,wpf在這之上增加了dependency property 依賴屬性 依賴屬性使用更高效的儲存機制,並且支援附加的功能,更改通知 屬性值繼承 在元素樹中向下傳播預設屬性值 以及減少屬性儲存空間。依賴屬性是wpf動畫 資料繫結和樣式的基礎...

WPF依賴屬性

依賴屬性是一種可以自己沒有值,並能通過使用binding從資料來源獲取值 依賴在別人身上 的屬性。優點 wpf的所有控制項都是依賴屬性。依賴物件被dependencyobject類實現,依賴屬性由dependencyproperty類實現。dependencyobject有getvalue setv...