锘??xml version="1.0" encoding="utf-8" standalone="yes"?>
1: <!--鏂規(guī)硶涓-->
2: <Button Margin="5">
3: <Button.Content>
4: <Image Source="Images/DVD.png" Width="48" Height="48" />
5: </Button.Content>
6: </Button>
<!--鏂規(guī)硶浜?->
9: <Button Margin="5">
10: <Image Source="Images/DVD.png" Width="48" Height="48" />
11: </Button>
13: <!--濡傛灉鏄瓧絎︿覆錛屾垨鑰呮槸鏁扮粍緇戝畾銆佽祫婧愬紩鐢ㄨ繕鍙互-->
14: <Button Margin="5" Content="Button Text" />
鍙﹀錛岃繕鍙互浣跨敤浠g爜鏉ヤ負(fù)ContentControl鎸囧畾鐩稿簲鐨凜ontent灞炴э紝濡傦細(xì)
1: TextBlock date = new TextBlock();
2: date.Text = DateTime.Now.ToString("yyyy-MM-dd");
4: TextBlock time = new TextBlock();
5: time.Text = DateTime.Now.ToString("hh:mm:ss");
7: StackPanel panel = new StackPanel();
8: panel.Children.Add(date);
9: panel.Children.Add(time);
11: btn.Content = panel;