python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Binding Slider.Value to property and setting Value to value above Slider.Maximum will coerce it to Maximum but the ViewModel will go out of sync
Before I start to explain my problem: The Slider is just an example for the following problem. I work on a custom control, that has to do a very similar thing like the slider does here:
Scenario:
I h...

Jannik
Votes: 0
Answers: 1
How to set a DependenceProperty if another DependencyProperty changes?
This is my solution structure:
My MainWindow.xaml:
<Window x:Class="ExampleApp.Views.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...
Anno
Votes: 0
Answers: 0
How to run code once all DependencyProperties have finished binding?
I have two DependencyProperties on a custom UserControl. They're based on each other, so if only one property is provided then the other will be calculated. The problem is that I do not want this calc...
Rachel
Votes: 0
Answers: 1
UWP VisualStateManager.GoToState() Not Working
I've created a custom control (ToggleIcon) that acts as a substitute for CheckBox, and need to add an IsChecked property to it so it can be programmatically cleared. I tried to accomplish this by usi...
Keven M
Votes: 0
Answers: 1