Philipp Spiegel

Results 21 comments of Philipp Spiegel

@Elsassmania The current implementation follows the specs strictly. I will plan to add some properties to enable further customization.

@Elsassmania The latest commit removes the fixed width of the items and adds a `LabelFontSize` property.

@eiredrake The trick is to use the `Resource` property of WPF controls. It's a direct way to define additional resources (styles, data templates, ...) for that control. Try to move...

I analyzed the `Stepper` templates and found out that a trigger for setting the `TextBlock.Foreground` to active or inactive overrides all other definitions. Do you see any messages saying that...

@maxmontgmx Did yout set the `ForceFileExtensionOfFileFilter` property of the arguments or the dialog control to `true`?

@donghaiting Your pull request only contains an empty file. I'm missing a file called `Strings.zh-CN.resx` containing the string translations.

@Coloris [This commit](https://github.com/spiegelp/MaterialDesignExtensions/commit/684e70d212c8a69d1bdabf81e722657029e42777) introduces the `IAutocompleteSourceChangingItems` interface and `AutocompleteSourceChangingItems` as an abstract implementation. Derive your autocomplete source from `AutocompleteSourceChangingItems` and call the `OnAutocompleteSourceItemsChanged()` method, if the list changes. Then the...

@Coloris Sorry for the late answer. It is important that your implementation of `IAutocompleteSourceChangingItems` raises the `AutocompleteSourceItemsChanged` event after every change. The `Autocomplete` handles the event and starts a new...

@Coloris Are you expecting that the list will update although the control is not focused? The event handler method checks for `m_searchTextBox != null && m_searchTextBox.IsKeyboardFocused` before triggering a search....

@CRREECLEE Would you please post me your App.xaml and the exception including the stack trace?