Hi Dilyan,
I have tried switching over but the window is no longer showing-up:
1. I have switched over to the NoXaml packages and I have added a reference to the following package `Telerik.Windows.Themes.Fluent.for.Wpf`.
2. I have commented the following lines of code:
StyleManager.ApplicationTheme =
new
FluentTheme();<br>FluentPalette.LoadPreset(FluentPalette.ColorVariation.Dark);<br>ThemeEffectsHelper.IsAcrylicEnabled =
false
;
3. I have updated my `App.xaml` from
<!--
Set the Telerik theme for all the supported default WPF controls
-->
<
telerik:FluentTheme
x:Key
=
"Theme"
/>
<
Style
TargetType
=
"{x:Type Button}"
>
<
Setter
Property
=
"telerik:StyleManager.Theme"
Value
=
"{StaticResource Theme}"
/>
</
Style
>
<
Style
TargetType
=
"{x:Type ScrollViewer}"
>
<
Setter
Property
=
"telerik:StyleManager.Theme"
Value
=
"{StaticResource Theme}"
/>
</
Style
>
<
Style
TargetType
=
"{x:Type CheckBox}"
>
<
Setter
Property
=
"telerik:StyleManager.Theme"
Value
=
"{StaticResource Theme}"
/>
</
Style
>
<
Style
TargetType
=
"{x:Type TextBox}"
>
<
Setter
Property
=
"telerik:StyleManager.Theme"
Value
=
"{StaticResource Theme}"
/>
</
Style
>
<
Style
TargetType
=
"{x:Type RadioButton}"
>
<
Setter
Property
=
"telerik:StyleManager.Theme"
Value
=
"{StaticResource Theme}"
/>
</
Style
>
<
Style
TargetType
=
"{x:Type ListBox}"
>
<
Setter
Property
=
"telerik:StyleManager.Theme"
Value
=
"{StaticResource Theme}"
/>
</
Style
>
<
Style
TargetType
=
"{x:Type PasswordBox}"
>
<
Setter
Property
=
"telerik:StyleManager.Theme"
Value
=
"{StaticResource Theme}"
/>
</
Style
>
<
Style
TargetType
=
"{x:Type RepeatButton}"
>
<
Setter
Property
=
"telerik:StyleManager.Theme"
Value
=
"{StaticResource Theme}"
/>
</
Style
>
<
Style
TargetType
=
"{x:Type ToolTip}"
>
<
Setter
Property
=
"telerik:StyleManager.Theme"
Value
=
"{StaticResource Theme}"
/>
</
Style
>
<
Style
TargetType
=
"{x:Type Hyperlink}"
>
<
Setter
Property
=
"telerik:StyleManager.Theme"
Value
=
"{StaticResource Theme}"
/>
</
Style
>
<
Style
TargetType
=
"{x:Type StatusBar}"
>
<
Setter
Property
=
"telerik:StyleManager.Theme"
Value
=
"{StaticResource Theme}"
/>
</
Style
>
<
Style
TargetType
=
"{x:Type GridSplitter}"
>
<
Setter
Property
=
"telerik:StyleManager.Theme"
Value
=
"{StaticResource Theme}"
/>
</
Style
>
<
Style
TargetType
=
"{x:Type Separator}"
>
<
Setter
Property
=
"telerik:StyleManager.Theme"
Value
=
"{StaticResource Theme}"
/>
</
Style
>
to
<
ResourceDictionary.MergedDictionaries
>
<
ResourceDictionary
Source
=
"pack://application:,,,/Telerik.Windows.Themes.Fluent;component/Themes/System.Windows.xaml"
/>
<
ResourceDictionary
Source
=
"pack://application:,,,/Telerik.Windows.Themes.Fluent;component/Themes/Telerik.Windows.Controls.xaml"
/>
<
ResourceDictionary
Source
=
"pack://application:,,,/Telerik.Windows.Themes.Fluent;component/Themes/Telerik.Windows.Controls.Input.xaml"
/>
<
ResourceDictionary
Source
=
"pack://application:,,,/Telerik.Windows.Themes.Fluent;component/Themes/Telerik.Windows.Controls.Navigation.xaml"
/>
</
ResourceDictionary.MergedDictionaries
>
And running the app gives me no window.