Skip to content

Instantly share code, notes, and snippets.

@ionoy
Created January 27, 2017 15:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ionoy/19c7c326c97db293bfaa4e8eac999a46 to your computer and use it in GitHub Desktop.
Save ionoy/19c7c326c97db293bfaa4e8eac999a46 to your computer and use it in GitHub Desktop.
alias MyTextBox(text) {
TextBox {
}
}
Window "Ammy.Test.Workbench.MainWindow" {
@MyTextBox("2") {
PreviewTextInput: "NumberValidationTextBox"
Text: bind CustomWidth
set [
ValidationRules: [
DoubleValidation {
CanBeNull: "False"
MinValue: "500"
MaxValue: "6200"
ValueName: "Width"
}
]
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment