欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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

程序员文章站 2022-03-02 11:46:48
...

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 Sub
End Class

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

 

  • silverlight 5开发【vb版】(8)-checkbox和combobox
            
    
    博客分类: .net&silverlight  
  • 大小: 26 KB