Windows Phone開發(11):常用控制項(下) 轉:http://blog.csdn.net/tcjiaan/article/details/7300085

來源:互聯網
上載者:User

WP控制項大部分都可以從Silverlight中繼承過來,這裡我也只能拿一部分作示範,對於其它控制項如何使用,可以參考SDK相關說明以及Silverlight SDK文檔。

 

一、RadioButton控制項。

這是一個單選控制項,不用多解釋,我們見得多了,N選1,控制項是否被使用者選中,由IsChecked屬性標記。
另外,要注意的一點是GroupName屬性,它輸入一個分組名,這個名由我們自己來取,目的也是為了分組,因為是單選,所以,一個容器中可能有N多個RadioButton控制項或都有多組RadioButton控制項,因此,組名就發揮了作用,也就是說,同一個組內的只能選一個,比如,有一個組A,A中包含3個RadioButton控制項,分別為紅燈,綠燈,黃燈,因此,這三個之中你只能選擇一個,另外有一組B,B中有一個RadioButton控制項,表示黑燈。由於屬於不同的組,紅燈和黑燈可以同時被選擇,或者,綠燈和黑燈可以同時選中。
下面看一個例子:

 

[html] view plaincopyprint?

  1. <RadioButton Content="豬頭" Height="115" HorizontalAlignment="Left" Margin="58,50,0,0" Name="rad01" VerticalAlignment="Top" FontSize="43" Width="333" GroupName="G1" Checked="radioBtn_Checked" />  
  2. <RadioButton Content="牛頭" Height="115" HorizontalAlignment="Left" Margin="58,207,0,0" Name="rad02" VerticalAlignment="Top" FontSize="43" Width="333" GroupName="G1" Checked="radioBtn_Checked" />  
  3. <RadioButton Content="狗頭" Height="109" HorizontalAlignment="Left" Margin="58,351,0,0" Name="rad03" VerticalAlignment="Top" FontSize="43" Width="333" GroupName="G1" Checked="radioBtn_Checked" />  

 

[csharp] view plaincopyprint?

  1. private void radioBtn_Checked(object sender, RoutedEventArgs e)  
  2. {  
  3.     RadioButton rdb = e.OriginalSource as RadioButton;  
  4.     if (rdb != null)  
  5.     {  
  6.         string msgc = rdb.Content as string;  
  7.         if (msgc != null)  
  8.         {  
  9.             MessageBox.Show("你選擇了:" + msgc);  
  10.         }  
  11.     }  
  12. }  

 

(圖1)

 

 

 

二、Image控制項。

這個傢伙,看名字你也猜到它是幹啥的。呵呵,對的,它就是用於顯示圖片的。

該控制項有兩個屬性要關心。
1、Source:既支援本地圖片,當然,一般把圖片編譯為資源好一些,這樣它就和.dll一起壓縮排xap包裡面了;同時,該屬性也支援網狀圖片。
2、Stretch:圖片在控制項中如何放置。

如下面的例子:

[html] view plaincopyprint?

  1. <Image HorizontalAlignment="Stretch" Margin="3" Name="image1" Stretch="Fill" VerticalAlignment="Stretch" Source="/ControlsSample2;component/Images/Desert.jpg" />  

 

(圖2)

 

接下來我們看看,Stretch屬性取不同的值會有什麼效果。
(圖3、4)

可能不明顯,大家可以自己動手試試。

 

 

三、ListBox控制項。

就算你沒玩過WPF,在WinForm裡面你肯定耍得不少了,綁定資料請設定ItemsSource屬性。

[html] view plaincopyprint?

  1. <ListBox HorizontalAlignment="Stretch" Margin="3" Name="listBox1" VerticalAlignment="Stretch"  />  

 

[csharp] view plaincopyprint?

  1. this.listBox1.ItemsSource = new string[]  
  2. {  
  3.     "龍騰虎躍", "虎頭蛇尾", "葉公好龍", "水落石出"  
  4. };  

 

(圖5)

 

 

四、HyperlinkButton控制項。

在介紹導航的時候也提到過這個控制項了,對了,用它可以輕鬆地實現頁面導航,例子就省略了吧,呵呵,又節約了幾百個字。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.