Keboo on icons
Icons update from Azure pipeline (compare)
Keboo on icons
Icons update from Azure pipeline (compare)
Keboo on icons
Icons update from Azure pipeline (compare)
Keboo on icons
Icons update from Azure pipeline (compare)
path = OpenDialogCommand
still no clue
@Miosss in regards to the popup box that sort of makes sense, the VS designer has historically been a pain to work with. What version of Visual Studio are you on? I know some of the later version (16.8+) have had some significant rework and it may be worth taking another stab at addressing the design time of the controls.
For the second issue that sounds like a bug, do you mind opening an issue for it?
DynamicResource
to look up the style for the TextBox
. This subtlety gives you an injection point to insert your own style. As long as you base your style on the original one it lets you toggle stuff. Something like this:<DatePicker
Width="100"
materialDesign:HintAssist.Hint="Pick Date"
Style="{StaticResource MaterialDesignFloatingHintDatePicker}">
<DatePicker.Resources>
<Style x:Key="MaterialDesignDatePickerTextBox"
BasedOn="{StaticResource MaterialDesignDatePickerTextBox}"
TargetType="{x:Type DatePickerTextBox}">
<Setter Property="Background" Value="Red" />
</Style>
</DatePicker.Resources>
</DatePicker>
-=
operator. You can see some examples and documentation here