Advertisement
Guest User

Untitled

a guest
Feb 27th, 2015
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. public partial class MainWindow : Window
  2. {
  3. public MainWindow()
  4. {
  5. InitializeComponent();
  6. System.Windows.Controls.Button b = new System.Windows.Controls.Button();
  7. System.Windows.Shapes.Rectangle r = new System.Windows.Shapes.Rectangle();
  8. r.Width = 40;
  9. r.Height = 40;
  10. r.Fill = System.Windows.Media.Brushes.Black;
  11. b.Content = r; // Make the square the content of the Button
  12. this.AddChild(b);
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement