masastack / MASA.Blazor

Blazor UI component library based on Material Design. Support Blazor Server, Blazor WebAssembly and MAUI Blazor.
https://docs.masastack.com/blazor/getting-started/installation
MIT License
1.11k stars 149 forks source link

How to change the Editor's Theme by Switch? #1885

Closed huxinshuo closed 1 week ago

huxinshuo commented 2 weeks ago

Editor(富文本编辑器)呈现后怎么切换样式?初始时候可以设置样式,呈现后可以切换样式吗? if (ThemeStyle == "snow") { ThemeStyle = "bubble"; } else if (ThemeStyle == "bubble") { ThemeStyle = "snow"; } 这个好像无效

capdiem commented 1 week ago

@huxinshuo quilljs 好像不止动态更改 theme,你通过 @key 强制组件重新加载。<MEditor @key="@ThemeStyle"/>

huxinshuo commented 1 week ago

Thanks