Guest User

Untitled

a guest
Apr 26th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. public struct Adress
  2. {
  3. public Adress(string text, double x, double y)
  4. {
  5. Text = text;
  6. X = x;
  7. Y = y;
  8. }
  9.  
  10. public string Text { get; set; }//Именно это свойство отображается в "ListboxItem"
  11. public double X { get; set; }
  12. public double Y { get; set; }
  13. }
Add Comment
Please, Sign In to add comment