Skip to content

Commit 6828e15

Browse files
Merge pull request #3808 from Syncfusion-Content/development
Dev to master
2 parents 9216294 + bffd433 commit 6828e15

File tree

7 files changed

+207
-22
lines changed

7 files changed

+207
-22
lines changed

MAUI/Autocomplete/UI-Customization.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -480,6 +480,38 @@ SfAutocomplete autocomplete = new SfAutocomplete()
480480

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

483+
### Customize the Selected DropDown Item Text Style
484+
485+
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.
486+
487+
{% tabs %}
488+
{% highlight xaml %}
489+
490+
<editors:SfAutocomplete x:Name="autoComplete" DisplayMemberPath = "Name" TextMemberPath = "Name" ItemsSource="{Binding SocialMedias}">
491+
<editors:SfAutocomplete.SelectedDropDownItemTextStyle>
492+
<editors:DropDownTextStyle TextColor="Orange" FontSize="16" FontAttributes="Bold"/>
493+
</editors:SfAutocomplete.SelectedDropDownItemTextStyle>
494+
</editors:SfAutocomplete>
495+
496+
{% endhighlight %}
497+
{% highlight C# %}
498+
499+
SfAutocomplete autoComplete = new SfAutocomplete
500+
{
501+
ItemsSource = socialMediaViewModel.SocialMedias,
502+
DisplayMemberPath = "Name",
503+
TextMemberPath = "Name",
504+
SelectedDropDownItemTextStyle = new DropDownTextStyle
505+
{
506+
TextColor = Colors.Orange,
507+
FontSize = 16,
508+
FontAttributes = FontAttributes.Bold
509+
}
510+
};
511+
512+
{% endhighlight %}
513+
{% endtabs %}
514+
483515
### Customize the DropDown Border Color
484516

485517
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.

MAUI/Cartesian-Charts/Axis/Types.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
layout: post
3-
title: Axis types in .NET MAUI Chart control | Syncfusion
3+
title: Axis types in .NET MAUI Cartesian Chart control | Syncfusion
44
description: Learn here all about axis types and its features in Syncfusion® .NET MAUI Chart (SfCartesianChart) control and more.
55
platform: maui
66
control: SfCartesianChart
77
documentation: ug
88
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.
99
---
1010

11-
# Types of Axis in .NET MAUI Chart
11+
# Types of Axis in .NET MAUI Cartesian Chart
1212

1313
Cartesian chart supports the following types of chart axis.
1414

MAUI/ComboBox/UI-Customization.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -550,6 +550,44 @@ SfComboBox comboBox = new SfComboBox()
550550

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

553+
### Customize the Selected DropDown Item Text Style
554+
555+
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.
556+
557+
{% tabs %}
558+
{% highlight xaml %}
559+
560+
<editors:SfComboBox x:Name="comboBox"
561+
ItemsSource="{Binding SocialMedias}"
562+
DisplayMemberPath="Name"
563+
TextMemberPath="Name"
564+
Placeholder="Enter Media">
565+
<editors:SfComboBox.SelectedDropDownItemTextStyle>
566+
<editors:DropDownTextStyle TextColor="Orange" FontSize="16" FontAttributes="Bold"/>
567+
</editors:SfComboBox.SelectedDropDownItemTextStyle>
568+
</editors:SfComboBox>
569+
570+
{% endhighlight %}
571+
572+
{% highlight C# %}
573+
574+
SfComboBox comboBox = new SfComboBox()
575+
{
576+
ItemsSource = socialMediaViewModel.SocialMedias,
577+
TextMemberPath = "Name",
578+
DisplayMemberPath = "Name",
579+
Placeholder="Enter Media",
580+
SelectedDropDownItemTextStyle = new DropDownTextStyle
581+
{
582+
TextColor = Colors.Orange,
583+
FontSize = 16,
584+
FontAttributes = FontAttributes.Bold
585+
}
586+
};
587+
588+
{% endhighlight %}
589+
{% endtabs %}
590+
553591
### Customize the DropDown Border Color
554592

555593
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.

MAUI/Masked-Entry/Basic-Features.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -341,6 +341,32 @@ maskedEntry.SelectAllOnFocus = true;
341341
{% endhighlight %}
342342
{% endtabs %}
343343

344+
## IsReadOnly Mode
345+
346+
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`.
347+
348+
{% tabs %}
349+
{% highlight xaml %}
350+
351+
<editors:SfMaskedEntry WidthRequest="200"
352+
MaskType="Simple"
353+
Mask="(000) 000-0000"
354+
Value="1234567890"
355+
IsReadOnly="True" />
356+
357+
{% endhighlight %}
358+
{% highlight c# %}
359+
360+
SfMaskedEntry maskedEntry = new SfMaskedEntry();
361+
maskedEntry.WidthRequest = 200;
362+
maskedEntry.MaskType = MaskedEntryMaskType.Simple;
363+
maskedEntry.Mask = "(000) 000-0000";
364+
maskedEntry.Value = "1234567890";
365+
maskedEntry.IsReadOnly = true;
366+
367+
{% endhighlight %}
368+
{% endtabs %}
369+
344370
## ReturnType
345371

346372
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.

MAUI/NumericEntry/Basic-Features.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,28 @@ The following image illustrates the result of the above code:
278278

279279
![HorizontalTextAlignment](GettingStarted_images/textalignment.png)
280280

281+
## Select text on focus
282+
283+
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`.
284+
285+
{% tabs %}
286+
{% highlight xaml %}
287+
288+
<editors:SfNumericEntry WidthRequest="200"
289+
Value="123456"
290+
SelectAllOnFocus="False" />
291+
292+
{% endhighlight %}
293+
{% highlight c# %}
294+
295+
SfNumericEntry numericEntry = new SfNumericEntry();
296+
numericEntry.WidthRequest = 200;
297+
numericEntry.Value = 123456;
298+
numericEntry.SelectAllOnFocus = false;
299+
300+
{% endhighlight %}
301+
{% endtabs %}
302+
281303
## ReturnType
282304

283305
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.

MAUI/Release-notes/v31.2.12.md

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
---
2+
title: Essential Studio® for MAUI Release Notes - v31.2.12
3+
description: Learn here about the controls in the Essential Studio® for MAUI 2025 Volume 3 SP2 Release - Release Notes - v31.2.12
4+
platform: maui
5+
documentation: ug
6+
---
7+
8+
# Essential Studio® for MAUI - v31.2.12 Release Notes
9+
10+
{% include release-info.html date="November 18, 2025" version="v31.2.12" passed="43894" failed="0" %}
11+
12+
{% directory path: _includes/release-notes/v31.2.12 %}
13+
14+
{% include {{file.url}} %}
15+
16+
{% enddirectory %}
17+
18+
## Test Results
19+
20+
| Component Name | Test Cases | Passed | Failed | Remarks |
21+
|---------------|------------|--------|--------|---------|
22+
| SfAccordion | 63 | 63 | 0 | All Passed |
23+
| SfAIAssistView | 153 | 153 | 0 | All Passed |
24+
| SfAutocomplete | 321 | 321 | 0 | All Passed |
25+
| SfAvatarView | 56 | 56 | 0 | All Passed |
26+
| SfBackDropPage | 83 | 83 | 0 | All Passed |
27+
| SfBadgeView | 81 | 81 | 0 | All Passed |
28+
| SfBarcodeGenerator | 1763 | 1763 | 0 | All Passed |
29+
| SfBusyIndicator | 91 | 91 | 0 | All Passed |
30+
| SfButton | 104 | 104 | 0 | All Passed |
31+
| SfCalendar | 2624 | 2624 | 0 | All Passed |
32+
| SfCards | 235 | 235 | 0 | All Passed |
33+
| SfCarousel | 229 | 229 | 0 | All Passed |
34+
| SfCharts | 521 | 521 | 0 | All Passed |
35+
| SfChat | 63 | 63 | 0 | All Passed |
36+
| SfCheck Box | 165 | 165 | 0 | All Passed |
37+
| SfChip | 73 | 73 | 0 | All Passed |
38+
| SfColorPicker | 164 | 164 | 0 | All Passed |
39+
| SfComboBox | 422 | 422 | 0 | All Passed |
40+
| SfDataForms | 3348 | 3348 | 0 | All Passed |
41+
| SfDataGrid | 3113 | 3113 | 0 | All Passed |
42+
| SfEffectsView | 61 | 61 | 0 | All Passed |
43+
| SfExpander | 215 | 215 | 0 | All Passed |
44+
| SfGauge | 1184 | 1184 | 0 | All Passed |
45+
| SfImageEditor | 762 | 762 | 0 | All Passed |
46+
| SfKanban | 410 | 410 | 0 | All Passed |
47+
| SfListView | 4813 | 4813 | 0 | All Passed |
48+
| SfMaps | 1268 | 1268 | 0 | All Passed |
49+
| SfMarkdownViewer | 116 | 116 | 0 | All Passed |
50+
| SfMaskedEntry | 180 | 180 | 0 | All Passed |
51+
| SfNavigationDrawer | 126 | 126 | 0 | All Passed |
52+
| SfNumericEntry | 218 | 218 | 0 | All Passed |
53+
| SfNumericUpDown | 218 | 218 | 0 | All Passed |
54+
| SfOTPInput | 55 | 55 | 0 | All Passed |
55+
| SfPicker | 1039 | 1039 | 0 | All Passed |
56+
| SfPopup | 1342 | 1342 | 0 | All Passed |
57+
| SfProgressBar | 626 | 626 | 0 | All Passed |
58+
| SfRadialMenu | 199 | 199 | 0 | All Passed |
59+
| SfRadioButton | 194 | 194 | 0 | All Passed |
60+
| SfRating | 202 | 202 | 0 | All Passed |
61+
| SfRichTextEditor | 157 | 157 | 0 | All Passed |
62+
| SfRotator | 1195 | 1195 | 0 | All Passed |
63+
| SfScheduler | 11556 | 11556 | 0 | All Passed |
64+
| SfSegment | 354 | 354 | 0 | All Passed |
65+
| SfShimmer | 371 | 371 | 0 | All Passed |
66+
| SfSignaturePad | 32 | 32 | 0 | All Passed |
67+
| SfSlider | 292 | 292 | 0 | All Passed |
68+
| SfSwitch | 131 | 131 | 0 | All Passed |
69+
| SfTab View | 1620 | 1620 | 0 | All Passed |
70+
| SfTextInputLayout | 174 | 174 | 0 | All Passed |
71+
| SfToolBar | 175 | 175 | 0 | All Passed |
72+
| SfTreeMap | 454 | 454 | 0 | All Passed |
73+
| SfTreeView | 483 | 483 | 0 | All Passed |

0 commit comments

Comments
 (0)