You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: maui-toolkit/Otp-Input/OtpInput-Customization.md
+2-24Lines changed: 2 additions & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -122,28 +122,6 @@ SfOtpInput otpInput = new SfOtpInput()
122
122
123
123

124
124
125
-
## Disable inputs
126
-
127
-
You can disable the OTP Input component by using the `IsEnabled` property. By default, this property's value is set to `True.`
128
-
129
-
{% tabs %}
130
-
{% highlight xaml %}
131
-
132
-
<otpInput:SfOtpInput IsEnabled="False" />
133
-
134
-
{% endhighlight %}
135
-
{% highlight C# %}
136
-
137
-
SfOtpInput otpInput = new SfOtpInput()
138
-
{
139
-
IsEnabled = false
140
-
};
141
-
142
-
{% endhighlight %}
143
-
{% endtabs %}
144
-
145
-

146
-
147
125
## Input background
148
126
149
127
You can set the `InputBackground` property to any color to customize the appearance of the input fields. The `InputBackground` property applies only when `StylingMode` is set to `Filled.`
@@ -218,15 +196,15 @@ You can set the `MaskCharacter` property to any character to define how the mask
Copy file name to clipboardExpand all lines: maui-toolkit/TabView/CenterButton-Customization.md
+21-27Lines changed: 21 additions & 27 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,11 +9,11 @@ documentation: ug
9
9
10
10
# Center Button Customization in .NET MAUI Tab View (SfTabView)
11
11
12
-
This section explains how to enable and customize The center button in .NET MAUI [SfTabView.](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.TabView.SfTabView.html)
12
+
This section explains how to enable and customize the center button in .NET MAUI [SfTabView.](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.TabView.SfTabView.html)
13
13
14
14
## Enable the center button
15
15
16
-
You can enable the center button in Tab View by setting the `IsCenterButtonEnable` property to `True.`
16
+
You can enable the center button in Tab View by setting the `IsCenterButtonEnabled` property to `True.`
17
17
18
18
{% tabs %}
19
19
@@ -38,27 +38,22 @@ public MainPage()
38
38
{% endtabs %}
39
39
40
40
## Customize the center button
41
-
You can customize the center button using the properties of `CenterButtonSetting.` The following properties are used to customize the view of the center button `Background,``Stroke,``StrokeThickness,``CornerRadius,``TextColor,``Height,``Title,``FontAttributes,``FontFamily,``FontSize,``Width,``ImageSource,``ImageSize,` and `DisplayMode.`
41
+
42
+
You can customize the center button using the properties of `CenterButtonSettings`. The following properties are used to customize the view of center button `Background`, `Stroke`,`StrokeThickness`, `CornerRadius`, `TextColor`, `Height`, `Title`, `FontAttributes`, `FontFamily`, `FontSize`, `Width`, `ImageSource`, `ImageSize`, and `DisplayMode`.
42
43
43
44
{% tabs %}
44
45
45
46
{% highlight xaml %}
46
47
47
48
<tabView:SfTabView.CenterButtonSettings>
48
-
<tabView:CenterButtonSettings Title="Home"
49
-
Height="70"
50
-
Width="80"
51
-
Background="White"
52
-
Stroke="HotPink"
53
-
StrokeThickness="3"
54
-
CornerRadius="10"
55
-
TextColor="Green"
56
-
ImageSource="image.png"
57
-
ImageSize="24"
58
-
DisplayMode="ImageWithText"
59
-
FontFamily="SevillanaRegular"
60
-
FontAttributes="Bold"
61
-
FontSize="16" />
49
+
<tabView:CenterButtonSettings Height="45"
50
+
Width="45"
51
+
CornerRadius="50"
52
+
Background="#6750A4"
53
+
ImageSize="25"
54
+
DisplayMode="Image"
55
+
ImageSource="image.png">
56
+
</tabView:CenterButtonSettings>
62
57
</tabView:SfTabView.CenterButtonSettings>
63
58
64
59
{% endhighlight %}
@@ -71,16 +66,13 @@ public MainPage()
71
66
SfTabView tabView = new SfTabView();
72
67
CenterButtonSettings centerButtonSettings = new CenterButtonSettings()

121
121
122
-
123
-
## Enable content transition
124
-
125
-
The .NET MAUI Tab View allows users to enable or disable the transition animation for tab content when switching between tabs using `IsContentTransitionEnabled` property.
The .NET MAUI TabView allows users to customize the header position using the `TabHeaderAlignment` property, providing greater flexibility in tab layout customization.
145
125
146
126
By default, the header is positioned at the Start. This property supports the following values:
147
127
148
-
***Start** - Positions the tab header at the beginning of the tab view.
149
-
***Center** - Aligns the tab header at the center of the tab view.
150
-
***End** - Places the tab header at the end of the tab view.
128
+
***Start** - Positions the tab header at the beginning of the Tab View.
129
+
***Center** - Aligns the tab header at the center of the Tab View.
130
+
***End** - Places the tab header at the end of the Tab View.
151
131
152
132
153
133
N> The `TabHeaderAlignment` property is applicable only when the `TabWidthMode` is set to SizeToContent.
The .NET MAUI Tab View allows users to enable or disable the transition animation for tab content when switching between tabs using `IsContentTransitionEnabled` property.
You can customize the image size in the .NET MAUI TabView control by setting the [ImageSize](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.TabView.SfTabItem.html#Syncfusion_Maui_Toolkit_TabView_SfTabItem_ImageSize) property.
0 commit comments