17 lines
362 B
Markdown
17 lines
362 B
Markdown
|
|
|
||
|
|
```xaml
|
||
|
|
<TextBox.Text>
|
||
|
|
<Binding Path="FloorHeight" UpdateSourceTrigger="PropertyChanged">
|
||
|
|
<Binding.ValidationRules>
|
||
|
|
<valrules:RangeVaildationRule Max="100" Min="0" />
|
||
|
|
</Binding.ValidationRules>
|
||
|
|
</Binding>
|
||
|
|
</TextBox.Text>
|
||
|
|
```
|
||
|
|
|
||
|
|
```xaml
|
||
|
|
<Window.DataContext>
|
||
|
|
<local:FloorFinshesViewModel />
|
||
|
|
</Window.DataContext>
|
||
|
|
```
|