Skip to content

Commit 06d3982

Browse files
Merge pull request #3935 from syncfusion-content/ContextUG
Modified the liquid glass UG content for core controls - Development
2 parents 0ef6351 + a6e6ee5 commit 06d3982

File tree

7 files changed

+28
-22
lines changed

7 files changed

+28
-22
lines changed

MAUI/ColorPicker/LiquidGlassSupport.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ documentation: ug
99

1010
# Liquid Glass Support for .NET MAUI ColorPicker:
1111

12-
The [SfColorPicker](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Inputs.SfColorPicker.html) supports a `liquid glass` effect (also called acrylic or glass morphism) when you enable the `EnableLiquidGlassEffect`. This feature adds a frosted, translucent style that blends with the background, giving the color picker a modern and elegant look. It works best over images or colorful layouts and provides smooth visual feedback during interaction.
12+
The [SfColorPicker](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Inputs.SfColorPicker.html) supports a `liquid glass` effect (also called acrylic or glass morphism) when you enable the `EnableLiquidGlassEffect`. This feature adds a frosted, translucent style that blends with the background, giving the Color Picker a modern and elegant look. It works best over images or colorful layouts and provides smooth visual feedback during interaction.
1313

1414
N>
1515
* Supported on `macOS 26 or higher` and `iOS 26 or higher`.
@@ -37,10 +37,10 @@ SfColorPicker colorPicker = new SfColorPicker
3737

3838
## Behavior and tips
3939

40-
- The glass effect is applied to the color picker at render time and during user interaction.
41-
- Place the color picker over visually rich content (images, gradients, or color blocks) to better showcase the transient glass effect.
40+
- The glass effect is applied to the Color Picker at render time and during user interaction.
41+
- Place the Color Picker over visually rich content (images, gradients, or color blocks) to better showcase the transient glass effect.
4242
- Visual output and performance may vary by device/platform; keep backgrounds moderately detailed to maintain clarity during interaction.
43-
- For an enhanced UI, set `SliderThumbStroke="Transparent"` and `SliderThumbFill="White"` at the sample level for the color picker.
43+
- For an enhanced UI, set `SliderThumbStroke="Transparent"` and `SliderThumbFill="White"` at the sample level for the Color Picker.
4444

4545
The following GIF demonstrates the liquid glass effect of Color Picker
4646

MAUI/NavigationDrawer/LiquidGlassSupport.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ documentation: ug
1010

1111
# Liquid Glass Support for .NET MAUI NavigationDrawer:
1212

13-
The [SfNavigationDrawer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.NavigationDrawer.SfNavigationDrawer.html) supports a `liquid glass` effect (also called acrylic or glass morphism) when you enable the `EnableLiquidGlassEffect`. This feature adds a frosted, translucent style that blends with the background, giving the navigation drawer a modern and elegant look.
13+
The [SfNavigationDrawer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.NavigationDrawer.SfNavigationDrawer.html) supports a `liquid glass` effect (also called acrylic or glass morphism) when you enable the `EnableLiquidGlassEffect`. This feature adds a frosted, translucent style that blends with the background, giving the Navigation Drawer a modern and elegant look.
1414

1515
N>
1616
* Supported on `macOS 26 or higher` and `iOS 26 or higher`.
@@ -38,8 +38,8 @@ SfNavigationDrawer navigationDrawer = new SfNavigationDrawer
3838

3939
## Behavior and tips
4040

41-
- The glass effect is applied to the navigation drawer at render time and during user interaction.
42-
- Place the navigation drawer over visually rich content (images, gradients, or color blocks) to better showcase the transient glass effect.
41+
- The glass effect is applied to the Navigation Drawer at render time and during user interaction.
42+
- Place the Navigation Drawer over visually rich content (images, gradients, or color blocks) to better showcase the transient glass effect.
4343
- Visual output and performance may vary by device/platform; keep backgrounds moderately detailed to maintain clarity during interaction.
4444
- For an enhanced UI, set `ContentBackground="Transparent"` for the `DrawerSettings` and `Background="Transparent"` for the `ContentView` at the sample .
4545

MAUI/NavigationDrawer/Multi-Drawer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Implement the secondary drawer using the SecondaryDrawerSettings property in SfN
9393

9494
N> When the primary drawer and the secondary drawer are set to the same position, the primary drawer will open on swiping.
9595

96-
## Toggling method
96+
### Toggling method
9797

9898
Users can toggle the secondary drawer using the `ToggleSecondaryDrawer` method.
9999

MAUI/NavigationDrawer/Toggling-Drawer.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,23 +17,29 @@ The drawer in the SfNavigationDrawer can be toggled using the following methods:
1717

1818
## Opening drawer programmatically
1919

20-
The [IsOpen](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.NavigationDrawer.SfNavigationDrawer.html#Syncfusion_Maui_NavigationDrawer_SfNavigationDrawer_IsOpen) property and [ToggleDrawer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.NavigationDrawer.SfNavigationDrawer.html#Syncfusion_Maui_NavigationDrawer_SfNavigationDrawer_ToggleDrawer) method enable programmatically opening or closing the drawer.
20+
The `IsOpen` property and [ToggleDrawer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.NavigationDrawer.SfNavigationDrawer.html#Syncfusion_Maui_NavigationDrawer_SfNavigationDrawer_ToggleDrawer) method enable programmatically opening or closing the drawer.
2121

2222
{% tabs %}
2323

2424
{% highlight xaml %}
2525

26-
<navigationdrawer:SfNavigationDrawer x:Name="navigationDrawer" IsOpen="True">
27-
</navigationdrawer:SfNavigationDrawer>
26+
<navigationDrawer:SfNavigationDrawer>
27+
<navigationDrawer:SfNavigationDrawer.DrawerSettings>
28+
<navigationDrawer:DrawerSettings IsOpen="True">
29+
</navigationDrawer:DrawerSettings>
30+
</navigationDrawer:SfNavigationDrawer.DrawerSettings>
31+
</navigationDrawer:SfNavigationDrawer>
32+
2833

2934
{% endhighlight %}
3035

3136
{% highlight c# %}
3237

33-
SfNavigationDrawer navigationDrawer = new SfNavigationDrawer()
34-
{
35-
IsOpen = true,
36-
};
38+
SfNavigationDrawer navigationDrawer = new SfNavigationDrawer();
39+
DrawerSettings primaryDrawer = new DrawerSettings();
40+
primaryDrawer.IsOpen = true;
41+
navigationDrawer.DrawerSettings = primaryDrawer;
42+
this.Content = navigationDrawer;
3743

3844
{% endhighlight %}
3945

MAUI/Radial-Menu/LiquidGlassSupport.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ SfRadialMenu radialMenu = new SfRadialMenu
3737

3838
## Behavior and tips
3939

40-
- The glass effect is applied to the radial menu at render time and during user interaction.
41-
- Place the radial menu over visually rich content (images, gradients, or color blocks) to better showcase the transient glass effect.
40+
- The glass effect is applied to the Radial Menu at render time and during user interaction.
41+
- Place the Radial Menu over visually rich content (images, gradients, or color blocks) to better showcase the transient glass effect.
4242
- Visual output and performance may vary by device/platform; keep backgrounds moderately detailed to maintain clarity during interaction.
4343

4444
The following image demonstrates the liquid glass effect of Radial Menu

MAUI/Switch/LiquidGlassSupport.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ documentation: ug
99

1010
# Liquid Glass Support for .NET MAUI Switch:
1111

12-
The [SfSwitch](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfSwitch.html) control supports a glass effect (also called acrylic or glass morphism) when you enable the `EnableLiquidGlassEffect` property. It works best over vibrant images or colorful layouts and enhances the visual depth of your UI. When toggled, the switch provides smooth transitions and clear visual feedback, making interactions feel polished and premium.
12+
The [SfSwitch](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfSwitch.html) control supports a glass effect (also called acrylic or glass morphism) when you enable the `EnableLiquidGlassEffect` property. It works best over vibrant images or colorful layouts and enhances the visual depth of your UI. When toggled, the Switch provides smooth transitions and clear visual feedback, making interactions feel polished and premium.
1313

1414
N>
1515
* Supported on `macOS 26 or higher` and `iOS 26 or higher`.
@@ -27,7 +27,7 @@ N>
2727
{% endhighlight %}
2828
{% highlight c# %}
2929

30-
SfSwitch aSwitch = new SfSwitch
30+
SfSwitch Switch = new SfSwitch
3131
{
3232
EnableLiquidGlassEffect = true
3333
};
@@ -37,8 +37,8 @@ SfSwitch aSwitch = new SfSwitch
3737

3838
## Behavior and tips
3939

40-
- The glass effect is applied to the switch at render time and during user interaction.
41-
- Place the switch over visually rich content (images, gradients, or color blocks) to better showcase the transient glass effect.
40+
- The glass effect is applied to the Switch at render time and during user interaction.
41+
- Place the Switch over visually rich content (images, gradients, or color blocks) to better showcase the transient glass effect.
4242
- Visual output and performance may vary by device/platform; keep backgrounds moderately detailed to maintain clarity during interaction.
4343

4444
The following GIF demonstrates the liquid glass effect of Switch

MAUI/TabView/LiquidGlassSupport.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ SfTabView tabView = new SfTabView
4141
- Place the Tab View over visually rich content (images, gradients, or color blocks) to better showcase the transient glass effect.
4242
- Visual output and performance may vary by device/platform; keep backgrounds moderately detailed to maintain clarity during interaction.
4343

44-
The following GIF demonstrates the liquid glass effect of TabView
44+
The following GIF demonstrates the liquid glass effect of Tab View
4545

4646
![Liquid Glass](images/liquid-glass.gif)

0 commit comments

Comments
 (0)