Windows Phone 7中的按钮命令

时间:2011-07-25 01:17:43

标签: windows-phone-7

我正在尝试以编程方式使用代码按钮单击命令,但我不知道该怎么做。

我想要点击按钮时会有所作为。

以下是我的按钮代码:

HyperlinkBut​​ton viewButton = new HyperlinkBut​​ton();

                viewButton.Margin = new Thickness(-150, 20, 0, 0);
                viewButton.Width = 100;
                viewButton.Height = 50;
                viewButton.Name = songTitle;
                viewButton.Background = new ImageBrush { ImageSource = new BitmapImage(new Uri("/AlarmClock;component/Images/music_note.png", UriKind.Relative)) };
                viewButton.FontSize = 30;

1 个答案:

答案 0 :(得分:0)

它将是一个标准的事件处理程序:

viewButton.Click += new RoutedEventHandler(viewButton_Click);

private void viewButton_Click(object sender, RoutedEventArgs e)
{
    // Action here.
}