Skip to content

Commit e1011a1

Browse files
Merge pull request #165 from syncfusion/internal_public
Release 1.0.5 updates
2 parents dbe5e9a + 8374bc8 commit e1011a1

File tree

303 files changed

+54490
-1261
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

303 files changed

+54490
-1261
lines changed

maui/samples/Gallery/ControlList.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,7 @@
2424
<Assembly Name="Cards" />
2525
<Assembly Name="Popup"/>
2626
<Assembly Name="OtpInput" />
27+
<Assembly Name="ProgressBar" />
28+
<Assembly Name="Picker" />
2729
</Assemblies>
2830
</SampleBrowser>
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
using System.Globalization;
2+
3+
namespace Syncfusion.Maui.ControlsGallery.Converters
4+
{
5+
public class StringToVisibilityConverter : IValueConverter
6+
{
7+
public object? Convert(object? value, Type targetType, object? parameter, CultureInfo culture)
8+
{
9+
return !string.IsNullOrEmpty(value as string);
10+
}
11+
12+
public object? ConvertBack(object? value, Type targetType, object? parameter, CultureInfo culture)
13+
{
14+
return null;
15+
}
16+
17+
}
18+
}
1.9 KB
Loading
2.49 KB
Loading
2.5 KB
Loading
1.43 KB
Loading
1.78 KB
Loading
2.39 KB
Loading
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<SyncfusionControls>
3+
<ControlCategory Name="Picker">
4+
5+
<Control Title="Picker"
6+
Image="picker.png"
7+
ControlName="SfPicker"
8+
Description="A versatile UI element designed for making selections from a set of options.">
9+
<Sample Title="Getting Started" SampleName="GettingStarted"/>
10+
<Sample Title="Flight booking" SampleName="FlightBooking"/>
11+
</Control>
12+
13+
<Control Title="Date Picker"
14+
Image="datepicker.png"
15+
ControlName="SfDatePicker"
16+
Description="A user interface element for selecting specific dates.">
17+
<Sample Title="Getting Started" SampleName="GettingStarted"/>
18+
<Sample Title="To-Do" SampleName="Customization"/>
19+
</Control>
20+
21+
<Control Title="Time Picker"
22+
Image="timepicker.png"
23+
ControlName="SfTimePicker"
24+
Description="An interface for choosing specific times of day.">
25+
<Sample Title="Getting Started" SampleName="GettingStarted"/>
26+
<Sample Title="Alarm" SampleName="Customization"/>
27+
</Control>
28+
29+
<Control Title="Date Time Picker"
30+
Image="datetimepicker.png"
31+
ControlName="SfDateTimePicker"
32+
Description="A combined interface to select dates and times.">
33+
<Sample Title="Getting Started" SampleName="GettingStarted"/>
34+
</Control>
35+
36+
</ControlCategory>
37+
</SyncfusionControls>
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<SyncfusionControls>
3+
<ControlCategory Name="Notification">
4+
5+
<Control Title="Linear Progress Bar" ControlName="SfLinearProgressBar" Image="linearprogressbar.png" Description="Indicates the progress of a task along a line.">
6+
<Sample SampleName="LinearProgressBar" Title="Features"/>
7+
</Control>
8+
9+
<Control Title="Circular Progress Bar" ControlName="SfCircularProgressBar" Image="circularprogressbar.png" Description="Indicates the progress of a task along a circle.">
10+
<Sample SampleName="CircularProgressBar" Title="Features"/>
11+
</Control>
12+
13+
</ControlCategory>
14+
</SyncfusionControls>

0 commit comments

Comments
 (0)