扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
作者:轩辕南宫 来源:天极开发 2007年11月3日
关键字:
01 <Page x:Class="BrowserDemo.Page1" 02 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 03 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 04 Title="Page1" 05 > 06 <Grid> 07 <Button Height="100" Width="300" FontSize="24" Background="Aqua" 08 Name="MyButton" Content="Click Me" Click="ChangeMe" > 09 </Button> 10 </Grid> 11 </Page> |
01 void ChangeMe(object sender, RoutedEventArgs eventArgs) 02 { 03 count++; 04 MyButton.Content = "You have clicked " + count + " times!"; 05 } |
01 using System; 02 using System.Collections.Generic; 03 using System.Text; 04 using System.Windows; 05 using System.Windows.Controls; 06 using System.Windows.Data; 07 using System.Windows.Documents; 08 using System.Windows.Input; 09 using System.Windows.Media; 10 using System.Windows.Media.Imaging; 11 using System.Windows.Navigation; 12 using System.Windows.Shapes; 13 14 namespace BrowserDemo 15 { 16 /// <summary> 17 /// Interaction logic for Page1.xaml 18 /// </summary> 19 20 public partial class Page1 : Page 21 { 22 int count = 0; 23 public Page1() 24 { 25 InitializeComponent(); 26 } 27 28 void ChangeMe(object sender, RoutedEventArgs e) 29 { 30 count++; 31 MyButton.Content = "You have clicked " + count + " times!"; 32 } 33 } 34 } |
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者