Guest User

Untitled

a guest
Aug 20th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. BindableProperty.Create(
  2. nameof(HasAutoUpperCaseText),
  3. typeof(bool),
  4. typeof(EditorExtend),
  5. false);
  6.  
  7. public bool HasAutoUpperCaseText
  8. {
  9. get { return (bool)GetValue(HasAutoUpperCaseTextProperty); }
  10. set { SetValue(HasAutoUpperCaseTextProperty, value); }
  11. }
Add Comment
Please, Sign In to add comment