Corvin

Results 39 comments of Corvin

I think this is due to the static reference to the converter, which was introduced in #3732: https://github.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/blob/e3c124063ca2978d3af8f52e6dff59804ca71031/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.DialogHost.xaml#L220

@mouawadma I feel like using a theming library inside of another library is quite the hassle. Adding the resource dictionary in the static constructor of your `Window1.xaml` works. However this...

@SandyHoDsal your suggested change removes the ClearType of text inside of the card. The duplicate border was added on purpose (see [PR #3500](https://github.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/pull/3500)) to maintain ClearType. If you look closely,...

@SandyHoDsal your observations do not match with mine. I am using the latest version of the master branch without any modifications to the library. With the `BorderThickness`, `UniformCornerRadius` and `Padding`...

removed setting IsTabStop again. Instead added an eventhandler for `GotFocusEvent` to move the focus to the `PART_TextBox` when the `NumericUpDown` has gotten focus. When the control gets focused, all the...

@jamesport079 I agree with you. I opened a [PR #3656](https://github.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/pull/3656) that should make the `NumericUpDown` control focusable via code and keyboard.

Some more info on this: When setting `IsMoveToPointEnabled` to `True` in the style for the Slider, there is additional code executed before the actual `base.OnPreviewMouseLeftButtonDown(e);`. I assume that is the...

This bug can be reproduced a little bit easier by following these steps: 1. Add alot of items to the TreeListView 2. Expand any item (preferably one at the top)...

I didn't confirm your particular problem myself, but the static referenced instances of the converters do indeed cause binding failures. We currently have this problem all throughout the library, however...

@Sade686 is it possible you provide either a repo, or a different, more to the point example? With the code you provided above I have to change alot of things...