Guest User

Untitled

a guest
Mar 22nd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public partial class Chat: Window {
  2. public Chat(string name, string message) {
  3. InitializeComponent();
  4. this.NameLabel.Content = name;
  5. this.MessageText.Text = message;
  6. }
  7. }
  8.  
  9. Chat notice = new Chat(name, message);
  10. ... + notice.Height ...
Add Comment
Please, Sign In to add comment