Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions MAUI/Autocomplete/UI-Customization.md
Original file line number Diff line number Diff line change
Expand Up @@ -480,6 +480,38 @@ SfAutocomplete autocomplete = new SfAutocomplete()

![.NET MAUI Autocomplete Selected DropDown Item Background](Images/UICustomization/SelectedDropDownItemBackground.png)

### Customize the Selected DropDown Item Text Style

The [SelectedDropDownItemTextStyle]() property in the SfAutoComplete control allows developers to customize the appearance of the selected item in the dropdown list. This feature is useful for highlighting user selections and improving the overall UI experience.

{% tabs %}
{% highlight xaml %}

<editors:SfAutocomplete x:Name="autoComplete" DisplayMemberPath = "Name" TextMemberPath = "Name" ItemsSource="{Binding SocialMedias}">
<editors:SfAutocomplete.SelectedDropDownItemTextStyle>
<editors:DropDownTextStyle TextColor="Orange" FontSize="16" FontAttributes="Bold"/>
</editors:SfAutocomplete.SelectedDropDownItemTextStyle>
</editors:SfAutocomplete>

{% endhighlight %}
{% highlight C# %}

SfAutocomplete autoComplete = new SfAutocomplete
{
ItemsSource = socialMediaViewModel.SocialMedias,
DisplayMemberPath = "Name",
TextMemberPath = "Name",
SelectedDropDownItemTextStyle = new DropDownTextStyle
{
TextColor = Colors.Orange,
FontSize = 16,
FontAttributes = FontAttributes.Bold
}
};

{% endhighlight %}
{% endtabs %}

### Customize the DropDown Border Color

The [DropDownStroke](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Inputs.DropDownControls.DropDownListBase.html#Syncfusion_Maui_Inputs_DropDownControls_DropDownListBase_DropDownStroke) property is used to modify the border color of the dropdown.
Expand Down
4 changes: 2 additions & 2 deletions MAUI/Cartesian-Charts/Axis/Types.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
---
layout: post
title: Axis types in .NET MAUI Chart control | Syncfusion
title: Axis types in .NET MAUI Cartesian Chart control | Syncfusion
description: Learn here all about axis types and its features in Syncfusion® .NET MAUI Chart (SfCartesianChart) control and more.
platform: maui
control: SfCartesianChart
documentation: ug
keywords: .net maui cartesian charts, .net maui axis types, cartesian chart axis types, syncfusion cartesian charts maui, maui chart axis customization, .net maui chart axis, cartesian chart axis guide maui, .net maui sfCartesianChart axis.
---

# Types of Axis in .NET MAUI Chart
# Types of Axis in .NET MAUI Cartesian Chart

Cartesian chart supports the following types of chart axis.

Expand Down
38 changes: 38 additions & 0 deletions MAUI/ComboBox/UI-Customization.md
Original file line number Diff line number Diff line change
Expand Up @@ -550,6 +550,44 @@ SfComboBox comboBox = new SfComboBox()

![.NET MAUI ComboBox Selected DropDown Item Background](Images/UICustomization/SelectedDropDownItemBackground.png)

### Customize the Selected DropDown Item Text Style

The [SelectedDropDownItemTextStyle]() property in the SfComboBox control allows developers to customize the appearance of the selected item in the dropdown list. This feature is useful for highlighting user selections and improving the overall UI experience.

{% tabs %}
{% highlight xaml %}

<editors:SfComboBox x:Name="comboBox"
ItemsSource="{Binding SocialMedias}"
DisplayMemberPath="Name"
TextMemberPath="Name"
Placeholder="Enter Media">
<editors:SfComboBox.SelectedDropDownItemTextStyle>
<editors:DropDownTextStyle TextColor="Orange" FontSize="16" FontAttributes="Bold"/>
</editors:SfComboBox.SelectedDropDownItemTextStyle>
</editors:SfComboBox>

{% endhighlight %}

{% highlight C# %}

SfComboBox comboBox = new SfComboBox()
{
ItemsSource = socialMediaViewModel.SocialMedias,
TextMemberPath = "Name",
DisplayMemberPath = "Name",
Placeholder="Enter Media",
SelectedDropDownItemTextStyle = new DropDownTextStyle
{
TextColor = Colors.Orange,
FontSize = 16,
FontAttributes = FontAttributes.Bold
}
};

{% endhighlight %}
{% endtabs %}

### Customize the DropDown Border Color

The [DropDownStroke](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Inputs.DropDownControls.DropDownListBase.html#Syncfusion_Maui_Inputs_DropDownControls_DropDownListBase_DropDownStroke) property is used to modify the border color of the dropdown.
Expand Down
26 changes: 26 additions & 0 deletions MAUI/Masked-Entry/Basic-Features.md
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,32 @@ maskedEntry.SelectAllOnFocus = true;
{% endhighlight %}
{% endtabs %}

## IsReadOnly Mode

The [`IsReadOnly`]() property allows you to make the masked entry non-editable while keeping it focusable and selectable. When enabled, users can still focus and select text, but cannot modify the value via typing, cut, paste, or the keyboard. The default value of this property is `false`.

{% tabs %}
{% highlight xaml %}

<editors:SfMaskedEntry WidthRequest="200"
MaskType="Simple"
Mask="(000) 000-0000"
Value="1234567890"
IsReadOnly="True" />

{% endhighlight %}
{% highlight c# %}

SfMaskedEntry maskedEntry = new SfMaskedEntry();
maskedEntry.WidthRequest = 200;
maskedEntry.MaskType = MaskedEntryMaskType.Simple;
maskedEntry.Mask = "(000) 000-0000";
maskedEntry.Value = "1234567890";
maskedEntry.IsReadOnly = true;

{% endhighlight %}
{% endtabs %}

## ReturnType

The `ReturnType` property specifies the return button (e.g., Next, Done, Go) of the keyboard. It helps manage the flow between multiple input fields by defining what happens when the action button is pressed.
Expand Down
22 changes: 22 additions & 0 deletions MAUI/NumericEntry/Basic-Features.md
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,28 @@ The following image illustrates the result of the above code:

![HorizontalTextAlignment](GettingStarted_images/textalignment.png)

## Select text on focus

The [`SelectAllOnFocus`]() property allows you to automatically select all the text in the numeric entry when the control gains focus. This can improve user efficiency by making it easy to replace the entire content. The default value of this property is `true`.

{% tabs %}
{% highlight xaml %}

<editors:SfNumericEntry WidthRequest="200"
Value="123456"
SelectAllOnFocus="False" />

{% endhighlight %}
{% highlight c# %}

SfNumericEntry numericEntry = new SfNumericEntry();
numericEntry.WidthRequest = 200;
numericEntry.Value = 123456;
numericEntry.SelectAllOnFocus = false;

{% endhighlight %}
{% endtabs %}

## ReturnType

The `ReturnType` property specifies the return button (e.g., Next, Done, Go) of the keyboard. It helps manage the flow between multiple input fields by defining what happens when the action button is pressed.
Expand Down
73 changes: 73 additions & 0 deletions MAUI/Release-notes/v31.2.12.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
---
title: Essential Studio® for MAUI Release Notes - v31.2.12
description: Learn here about the controls in the Essential Studio® for MAUI 2025 Volume 3 SP2 Release - Release Notes - v31.2.12
platform: maui
documentation: ug
---

# Essential Studio® for MAUI - v31.2.12 Release Notes

{% include release-info.html date="November 18, 2025" version="v31.2.12" passed="43894" failed="0" %}

{% directory path: _includes/release-notes/v31.2.12 %}

{% include {{file.url}} %}

{% enddirectory %}

## Test Results

| Component Name | Test Cases | Passed | Failed | Remarks |
|---------------|------------|--------|--------|---------|
| SfAccordion | 63 | 63 | 0 | All Passed |
| SfAIAssistView | 153 | 153 | 0 | All Passed |
| SfAutocomplete | 321 | 321 | 0 | All Passed |
| SfAvatarView | 56 | 56 | 0 | All Passed |
| SfBackDropPage | 83 | 83 | 0 | All Passed |
| SfBadgeView | 81 | 81 | 0 | All Passed |
| SfBarcodeGenerator | 1763 | 1763 | 0 | All Passed |
| SfBusyIndicator | 91 | 91 | 0 | All Passed |
| SfButton | 104 | 104 | 0 | All Passed |
| SfCalendar | 2624 | 2624 | 0 | All Passed |
| SfCards | 235 | 235 | 0 | All Passed |
| SfCarousel | 229 | 229 | 0 | All Passed |
| SfCharts | 521 | 521 | 0 | All Passed |
| SfChat | 63 | 63 | 0 | All Passed |
| SfCheck Box | 165 | 165 | 0 | All Passed |
| SfChip | 73 | 73 | 0 | All Passed |
| SfColorPicker | 164 | 164 | 0 | All Passed |
| SfComboBox | 422 | 422 | 0 | All Passed |
| SfDataForms | 3348 | 3348 | 0 | All Passed |
| SfDataGrid | 3113 | 3113 | 0 | All Passed |
| SfEffectsView | 61 | 61 | 0 | All Passed |
| SfExpander | 215 | 215 | 0 | All Passed |
| SfGauge | 1184 | 1184 | 0 | All Passed |
| SfImageEditor | 762 | 762 | 0 | All Passed |
| SfKanban | 410 | 410 | 0 | All Passed |
| SfListView | 4813 | 4813 | 0 | All Passed |
| SfMaps | 1268 | 1268 | 0 | All Passed |
| SfMarkdownViewer | 116 | 116 | 0 | All Passed |
| SfMaskedEntry | 180 | 180 | 0 | All Passed |
| SfNavigationDrawer | 126 | 126 | 0 | All Passed |
| SfNumericEntry | 218 | 218 | 0 | All Passed |
| SfNumericUpDown | 218 | 218 | 0 | All Passed |
| SfOTPInput | 55 | 55 | 0 | All Passed |
| SfPicker | 1039 | 1039 | 0 | All Passed |
| SfPopup | 1342 | 1342 | 0 | All Passed |
| SfProgressBar | 626 | 626 | 0 | All Passed |
| SfRadialMenu | 199 | 199 | 0 | All Passed |
| SfRadioButton | 194 | 194 | 0 | All Passed |
| SfRating | 202 | 202 | 0 | All Passed |
| SfRichTextEditor | 157 | 157 | 0 | All Passed |
| SfRotator | 1195 | 1195 | 0 | All Passed |
| SfScheduler | 11556 | 11556 | 0 | All Passed |
| SfSegment | 354 | 354 | 0 | All Passed |
| SfShimmer | 371 | 371 | 0 | All Passed |
| SfSignaturePad | 32 | 32 | 0 | All Passed |
| SfSlider | 292 | 292 | 0 | All Passed |
| SfSwitch | 131 | 131 | 0 | All Passed |
| SfTab View | 1620 | 1620 | 0 | All Passed |
| SfTextInputLayout | 174 | 174 | 0 | All Passed |
| SfToolBar | 175 | 175 | 0 | All Passed |
| SfTreeMap | 454 | 454 | 0 | All Passed |
| SfTreeView | 483 | 483 | 0 | All Passed |
1 change: 0 additions & 1 deletion MAUI/Scheduler/localization.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,3 @@ To localize the `Scheduler` based on `CurrentUICulture` using `resource` files,
![shows-the-added-resource-file-name-value-pair-in-the-resource-designer-in-maui-scheduler](images/localization/shows-the-added-resource-file-name-value-pair-in-the-resource-designer-in-maui-scheduler.png)

The complete sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/maui-scheduler-examples/tree/main/Localization).

Loading