自學WPF 第七課StackPanel控制項

2021-05-27 02:51:39 字數 2096 閱讀 3718

stackpanel控制項是乙個面板,可以對放在其中的所有控制項進行排列,對齊等相關操作,相當於windows forms中的panel控制項

**如下所示:

height="55"/> 

height="400"/>   

width="190"/> 

width="190"/> 

width="190"/> 

stackpanel horizontalalignment

and verticalalignment sample   

user the listboxes below to

manipulate the orientation of the nested stackpanel,as well as the

horizontalalignemnt and verticalalignment of the buttons with the yello

stackpanel 

change stackpanel orientation   

horizontal

vertical  

horizontalalignment="left"  name="txthorizontal" verticalalignment="top">

change horizontalalignment 

height="50" horizontalalignment="center"

name="ltboxhorizontal"

verticalalignment="top" width="80" >

left

right

center

stretch  

horizontalalignment="left"  name="txtvertical" text="change

verticalalignment" verticalalignment="top" />

height="50" horizontalalignment="center" 

name="ltboxvertical" verticalalignment="top" width="80" >

top

bottom

center

stretch

grid.columnspan="6" grid.row="3"  name="stackpanel1" background="yellow">

button one

button two

button three

button four

button five

button six

後台功能**如下:

public partial class mainwindow :

window  

private void listbox1_selectionchanged(object sender, selectionchangedeventargs e) 

else if (item.content.tostring() == "vertical")

} private void ltboxhorizontal_selectionchanged(object sender, selectionchangedeventargs e)

else if (item.content.tostring() == "right")  

else if (item.content.tostring() == "center")

else if (item.content.tostring() == "stretch") }

private void ltboxvertical_selectionchanged(object sender, selectionchangedeventargs e)

else if (item.content.tostring() == "bottom")

else if (item.content.tostring() == "center")

else if (item.content.tostring() == "stretch") }

C語言第七課

主要內容 結構體 很重要,掌握 一 結構體的宣告 結構體是一種比較靈活的資料型別,與oc要學的類很相似 結構體是一種自己定義的資料型別示例 struct 結構體名 student 定義乙個學生型別 由結構體型別修飾的變數,叫結構體變數 定義 struct 結構體名 變數名 示例 struct stu...

第七課 C變數

第七課c變數 7.1 c 變數介紹 變數是程式可操作的儲存區的名稱。c 中每個變數都有特定的型別,型別決定了變數儲存的大小和布局,該範圍內的值都可以儲存在記憶體中,運算子可應用於變數上。變數的名稱可以由字母 數字和下劃線字元組成。它必須以字母或下劃線開頭。大寫字母和小寫字母是不同的,因為c 是大小寫...

python第七課(集合)

set 集合是乙個無序不重複元素的集合 無序唯一 支援 union 聯合 intersection 交 difference 差 和 sysmmetric difference 對稱差集 等數 算 建立語法 set1 set 空 set1 set1 set 字典將取key key 唯一 set1 s...