當前位置: 妍妍網 > 碼農

MaterialDesignInXamlToolkit 5.0 釋出

2024-03-05碼農


5.0.0 釋出

這是一個重大版本更新,又許多破壞性變化

升級到5.0.0版本,請參考:

變化

關鍵性變化

  • Allow for transparent colors for generated icons by @Keboo in #3273

  • Add new options to the ExpanderAssist class by @AbderrahmaneAhmam in #3294

  • [Feature] Add AutoSuggestion option for TextBox by @AbderrahmaneAhmam in #3207

  • NEW FEATURE: Multi-select TreeView by @Keboo in #3333

  • Chip Template Bug by @ZPChan in #3359

  • Removing all usage of "Accent" from the library by @Keboo in #3409

  • SplitButton leveraging PopupBox by @nicolaihenriksen in #3382

  • Add support for TextFieldAssist.HasClearButton in RichTextBox by @nicolaihenriksen in #3414

  • New FlipperControl by @Keboo in #3431

  • Create the slider theme for md3 guideline by @viveleltsi in #3432

  • The last of the 5.0 cleanup by @Keboo in #3444

  • Fix the converter to round the value by @Keboo in #3452

  • 破壞性變化

  • ListBoxAssist.IsToggle - Ensure last clicked item is always selected by @nicolaihenriksen in #3349

  • Removing defaults in favor of specifying MD2 or MD3 by @Keboo in #3467

  • 新貢獻著

  • @Talwynox made their first contribution in #3249

  • @JoshStrauss made their first contribution in #3242

  • @AndrewKeepCoding made their first contribution in #3292

  • @AbderrahmaneAhmam made their first contribution in #3294

  • @ZPChan made their first contribution in #3359

  • @BenjaminMichaelis made their first contribution in #3396

  • @viveleltsi made their first contribution in #3432

  • @ion-mironov made their first contribution in #3468

  • 本人貢獻

    在使用4.9版本時, ComboBox 出現一個錯誤,送出了 Issues,在5.0版本得到了修復。

    <Grid>
    <StackPanel VerticalAlignment="Center">
    <ComboBox HorizontalContentAlignment="Center">
    <ComboBoxItem Content="Center" IsSelected="True">
    </ComboBoxItem>
    </ComboBox>
    <ComboBox HorizontalContentAlignment="Right">
    <ComboBoxItem Content="Center" IsSelected="True">
    </ComboBoxItem>
    </ComboBox>
    </StackPanel>
    </Grid>

    4.7、4.8、4.9和5.0版本的顯示效果,其中4.7 和 5.0 版本顯示為正確。