首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 媒体动画 > CAD教程 >

silverlight 五开发【vb版】(8)-checkbox和combobox

2012-08-26 
silverlight 5开发【vb版】(8)-checkbox和combobox1、checkbox选项控件Checked和Unchecked事件最重要 2、combo

silverlight 5开发【vb版】(8)-checkbox和combobox

1、checkbox

选项控件

Checked和Unchecked事件最重要

2、combobox

下拉框控件

最重要的事件是

?

SelectionChanged? 在当前选定项更改时发生

3、代码:

Partial Public Class MainPage    Inherits UserControl    Private currentlocation As Point    Public Sub New()        InitializeComponent()    End Sub    Private Sub Button1_Click(sender As System.Object, e As System.Windows.RoutedEventArgs) Handles Button1.Click        ComboBox1.Items.Add(TextBox1.Text)    End Sub    Private Sub LayoutRoot_MouseMove(sender As System.Object, e As System.Windows.Input.MouseEventArgs) Handles LayoutRoot.MouseMove        currentlocation = e.GetPosition(LayoutRoot)        Label2.Content = "现在鼠标的坐标是:(" & currentlocation.X.ToString() & "," & currentlocation.Y.ToString() & ")"    End Sub    Private Sub CheckBox1_Checked(sender As System.Object, e As System.Windows.RoutedEventArgs) Handles CheckBox1.Checked        Label1.Content = "您好,您选中了!"    End Sub    Private Sub CheckBox1_Unchecked(sender As System.Object, e As System.Windows.RoutedEventArgs) Handles CheckBox1.Unchecked        Label1.Content = "您好,您没有选择!"    End Sub    Private Sub ComboBox1_SelectionChanged(sender As System.Object, e As System.Windows.Controls.SelectionChangedEventArgs) Handles ComboBox1.SelectionChanged        Label4.Content = ComboBox1.SelectedValue    End SubEnd Class

?
silverlight 五开发【vb版】(8)-checkbox和combobox
?上面这个代码,当在文本框中输入任何内容后,这些内容将做为下拉框的选项之一,也就是 说下拉框的选项是动态增加的

?

热点排行