Creating Your First Silverlight 2 App: Listing 2. Using C# to handle Silverlight control events.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;

namespace FirstSilverlight2Application
{
    public partial class Page : UserControl
    {
        public Page()
        {
            InitializeComponent();
        }

        private void btnSubmit_Click(object sender, RoutedEventArgs e)
        {
            this.tbName.Text = this.txtName.Text;
        }
    }
}
comments powered by Disqus

Featured

Subscribe on YouTube