Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <DataGridTextColumn Header="Position" Binding="{Binding Position, StringFormat=N2}" Width="100" IsReadOnly="False"/>
  2.  
  3. private sting position;
  4.  
  5. public sting Position
  6. {
  7. get { return position; }
  8. set
  9. {
  10. if (position == value) return;
  11. position = value;
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement