Skip to content

Commit c9cb001

Browse files
committed
Image and Readme Updated
1 parent e01e15c commit c9cb001

Some content is hidden

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

47 files changed

+39
-166
lines changed

CS/AdvancedColumnLayout/MainPage.xaml

+9-18
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
ios:Page.UseSafeArea="true"
66
x:Class="AdvancedColumnLayout.MainPage">
77
<dxg:DataGridView ItemsSource="{Binding Employees}">
8-
<dxg:DataGridView.AdvancedColumnLayout>
8+
<!--<dxg:DataGridView.AdvancedColumnLayout>
99
<dxg:AdvancedColumnLayout>
1010
<dxg:AdvancedColumnLayout.ColumnDefinitions>
11-
<ColumnDefinition Width="100"/>
12-
<ColumnDefinition Width="6*"/>
13-
<ColumnDefinition Width="7*"/>
14-
<ColumnDefinition Width="6*"/>
11+
<ColumnDefinition Width="80"/>
12+
<ColumnDefinition Width="3*"/>
13+
<ColumnDefinition Width="8*"/>
14+
<ColumnDefinition Width="8*"/>
1515
<ColumnDefinition Width="9*"/>
1616
</dxg:AdvancedColumnLayout.ColumnDefinitions>
1717
<dxg:AdvancedColumnLayout.RowDefinitions>
@@ -21,22 +21,13 @@
2121
<RowDefinition Height="Auto"/>
2222
</dxg:AdvancedColumnLayout.RowDefinitions>
2323
</dxg:AdvancedColumnLayout>
24-
</dxg:DataGridView.AdvancedColumnLayout>
24+
</dxg:DataGridView.AdvancedColumnLayout>-->
2525

26-
<dxg:ImageColumn FieldName="Image" Caption="Photo" RowSpan="3"/>
26+
<dxg:ImageColumn FieldName="Image" Caption="Photo" Column="0" />
2727

28-
<dxg:TextColumn FieldName="FullName" Column="1" ColumnSpan="2"/>
29-
<dxg:TextColumn FieldName="Phone" Column="3" ColumnSpan="2"/>
28+
<dxg:TextColumn FieldName="FullName" Column="1"/>
3029

31-
<dxg:TextColumn FieldName="JobTitle" Row="1" Column="1" ColumnSpan="4"/>
32-
33-
<dxg:DateColumn FieldName="BirthDate" Row="2" Column="1" ColumnSpan="2"/>
34-
<dxg:DateColumn FieldName="HireDate" Row="2" Column="3" ColumnSpan="2"/>
35-
36-
<dxg:TextColumn FieldName="AddressLine1" Caption="Address" Row="3" ColumnSpan="2"/>
37-
<dxg:TextColumn FieldName="City" Row="3" Column="2"/>
38-
<dxg:TextColumn FieldName="PostalCode" Caption="Code" Row="3" Column="3"/>
39-
<dxg:TextColumn FieldName="CountryRegionName" Caption="Country" Row="3" Column="4"/>
30+
<dxg:TextColumn FieldName="JobTitle" Column="2" />
4031

4132
</dxg:DataGridView>
4233
</ContentPage>

CS/AdvancedColumnLayout/Readme.md

+2-7
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
11
# Change Column Layout
22

3-
This example shows how to define the multi-row column layout for a grid that contains information about *employees*. For a complete description, refer to the following help topic: [Change Column Layout](https://docs.devexpress.com/MobileControls/401696/xamarin-forms/data-grid/examples/column-layout).
3+
This example shows how to define the multi-row column layout for a grid that contains information about *employees*.
44

5-
<img src="./img/column-layouts.png"/>
6-
7-
To run the application:
8-
1. [Obtain your NuGet feed URL](http://docs.devexpress.com/GeneralInformation/116042/installation/install-devexpress-controls-using-nuget-packages/obtain-your-nuget-feed-url).
9-
2. Register the DevExpress NuGet feed as a package source.
10-
3. Restore all NuGet packages for the solution.
5+
<img src="./img/advanced-column-layouts.png"/>
116

127
<!-- default file list -->
138
## Files to Review
Loading
-134 KB
Binary file not shown.

CS/ColumnHeaderTemplate/ColumnHeaderTemplate.csproj

-12
Original file line numberDiff line numberDiff line change
@@ -34,18 +34,6 @@
3434
<!-- Custom Fonts -->
3535
<MauiFont Include="Resources\Fonts\*" />
3636
</ItemGroup>
37-
<ItemGroup>
38-
<None Remove="Resources\Images\andrew_fuller.jpg" />
39-
<None Remove="Resources\Images\anne_dodsworth.jpg" />
40-
<None Remove="Resources\Images\janet_leverling.jpg" />
41-
<None Remove="Resources\Images\laura_callahan.jpg" />
42-
<None Remove="Resources\Images\margaret_peacock.jpg" />
43-
<None Remove="Resources\Images\michael_suyama.jpg" />
44-
<None Remove="Resources\Images\nancy_davolio.jpg" />
45-
<None Remove="Resources\Images\robert_king.jpg" />
46-
<None Remove="Resources\Images\steven_buchanan.jpg" />
47-
<None Remove="Resources\Images\xamarin_logo.svg" />
48-
</ItemGroup>
4937

5038

5139
<ItemGroup>

CS/ColumnHeaderTemplate/Readme.md

+2-7
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
11
# Define Column Header Template
22

3-
This example shows how to define templates for grid column headers. To do this, assign a [DataTemplate](https://docs.microsoft.com/en-us/dotnet/api/xamarin.forms.datatemplate?view=xamarin-forms) object to a column's [HeaderContentTemplate](https://docs.devexpress.com/MobileControls/DevExpress.XamarinForms.DataGrid.GridColumn.HeaderContentTemplate) property.
3+
This example shows how to define templates for grid column headers. To do this, assign a [DataTemplate](https://learn.microsoft.com/en-us/dotnet/api/microsoft.maui.controls.datatemplate) object to a column's [HeaderContentTemplate](https://docs.devexpress.com/MAUI/DevExpress.Maui.DataGrid.GridColumn.HeaderContentTemplate) property.
44

5-
<img src="./img/column-header-template.png"/>
6-
7-
To run the application:
8-
1. [Obtain your NuGet feed URL](http://docs.devexpress.com/GeneralInformation/116042/installation/install-devexpress-controls-using-nuget-packages/obtain-your-nuget-feed-url).
9-
2. Register the DevExpress NuGet feed as a package source.
10-
3. Restore all NuGet packages for the solution.
5+
<img src="./img/column-header-template-example.png"/>
116

127
<!-- default file list -->
138
## Files to Review
Loading
Loading
Loading
321 Bytes
Loading
506 Bytes
Loading
Loading
Binary file not shown.

CS/Columns/Readme.md

+2-7
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
11
# Create Columns for Different Data Types
22

3-
This example shows how to create columns in [DataGridView](https://docs.devexpress.com/MobileControls/DevExpress.XamarinForms.DataGrid.DataGridView) to display and edit data of different types. The grid is bound to a collection of *Employee* objects. Each *Employee* object contains an employee's photo (image), name, position, phone, address (strings), hire and birth dates (DateTime values), employee's access level (enumeration value), and a Boolean value indicating whether an employee is on vacation. For a complete description, refer to the following help topic: [Create Columns for Different Data Types](https://docs.devexpress.com/MobileControls/400831/xamarin-forms/data-grid/examples/all-columns).
3+
This example shows how to create columns in [DataGridView](https://docs.devexpress.com/MAUI/DevExpress.Maui.DataGrid.DataGridView) to display and edit data of different types. The grid is bound to a collection of *Employee* objects. Each *Employee* object contains an employee's photo (image), name, position, phone, address (strings), hire and birth dates (DateTime values), employee's access level (enumeration value), and a Boolean value indicating whether an employee is on vacation.
44

5-
<img src="./img/grid-all-columns.png"/>
5+
<img src="./img/all-columns.png"/>
66

7-
To run the application:
8-
1. [Obtain your NuGet feed URL](http://docs.devexpress.com/GeneralInformation/116042/installation/install-devexpress-controls-using-nuget-packages/obtain-your-nuget-feed-url).
9-
2. Register the DevExpress NuGet feed as a package source.
10-
3. Restore all NuGet packages for the solution.
11-
127
<!-- default file list -->
138
## Files to Review
149

CS/Columns/img/all-columns.png

781 KB
Loading

CS/Columns/img/grid-all-columns.png

-52.5 KB
Binary file not shown.

CS/CustomAppearance/MainPage.xaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
xmlns:dxg="clr-namespace:DevExpress.Maui.DataGrid;assembly=DevExpress.Maui.DataGrid"
44
xmlns:local="clr-namespace:CustomAppearance"
55
xmlns:ios="clr-namespace:Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific;assembly=Microsoft.Maui.Controls"
6-
ios:Page.UseSafeArea="true"
6+
ios:Page.UseSafeArea="false"
77
x:Class="CustomAppearance.MainPage">
88
<ContentPage.BindingContext>
99
<local:TestOrderRepository/>

CS/CustomAppearance/Readme.md

+2-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
11
# Customize Grid Appearance
2-
This example shows how to modify the grid appearance. For a complete description, refer to the following help topic: [Change Grid Appearance](http://docs.devexpress.devx/MobileControls/400845/xamarin-forms/data-grid/examples/grid-custom-appearance).
2+
This example shows how to modify the grid appearance. For a complete description, refer to the following help topic: [Change Grid Appearance](https://docs.devexpress.com/MAUI/403565/data-grid/net-maui-data-grid-appearance).
33

4-
<img src="./img/grid-custom-appearance.png"/>
5-
6-
To run the application:
7-
1. [Obtain your NuGet feed URL](http://docs.devexpress.com/GeneralInformation/116042/installation/install-devexpress-controls-using-nuget-packages/obtain-your-nuget-feed-url).
8-
2. Register the DevExpress NuGet feed as a package source.
9-
3. Restore all NuGet packages for the solution.
4+
<img src="./img/custom-appearance.png"/>
105

116
<!-- default file list -->
127
## Files to Review
191 KB
Loading
Binary file not shown.

CS/DataGridExample/Readme.md

+3-34
Original file line numberDiff line numberDiff line change
@@ -3,46 +3,15 @@
33
[![](https://img.shields.io/badge/Open_in_DevExpress_Support_Center-FF7200?style=flat-square&logo=DevExpress&logoColor=white)](https://supportcenter.devexpress.com/ticket/details/T1011038)
44
[![](https://img.shields.io/badge/📖_How_to_use_DevExpress_Examples-e9f6fc?style=flat-square)](https://docs.devexpress.com/GeneralInformation/403183)
55
<!-- default badges end -->
6-
# DevExpress Data Grid for .NET MAUI
7-
8-
[DevExpress Mobile UI](https://www.devexpress.com/maui/) allows you to use a .NET cross-platform UI toolkit and C# to build native apps for iOS and Android.
9-
10-
![DevExpress Mobile UI for .NET MAUI](./img/maui.png)
11-
12-
The **DevExpress Mobile UI for Xamarin.Forms and .NET MAUI** is free of charge. To learn more about our offer and to reserve your copy, visit [Free DevExpress Mobile UI for Xamarin.Forms and .NET MAUI](https://www.devexpress.com/xamarin-free).
13-
14-
## Requirements
15-
16-
Please register the DevExpress NuGet Gallery in Visual Studio to restore the NuGet packages used in this solution. See the following topic for more information: [Get Started with DevExpress Mobile UI for .NET MAUI](https://docs.devexpress.com/MAUI/403249/get-started).
17-
18-
## Documentation
19-
20-
- [Data Grid](https://docs.devexpress.com/MAUI/403255/data-grid/data-grid)
21-
- [Charts](https://docs.devexpress.com/MAUI/403300/charts/charts)
22-
- [Data Form](https://docs.devexpress.com/MAUI/403640/data-form)
23-
- [Navigation](https://docs.devexpress.com/MAUI/403297/navigation/index)
24-
- [Data Editors](https://docs.devexpress.com/MAUI/403427/editors/index)
25-
- [Collection View](https://docs.devexpress.com/MAUI/403324/collection-view/index)
26-
27-
## More Examples
28-
29-
* [Stocks App](https://github.com/DevExpress-Examples/maui-stocks-mini)
30-
* [Data Form](https://github.com/DevExpress-Examples/maui-data-form-get-started)
31-
* [Data Editors](https://github.com/DevExpress-Examples/maui-editors-get-started)
32-
* [Pie Chart](https://github.com/DevExpress-Examples/maui-pie-chart-get-started)
33-
* [Scatter Chart](https://github.com/DevExpress-Examples/maui-scatter-chart-get-started)
34-
* [Tab View](https://github.com/DevExpress-Examples/maui-tab-view-get-started)
35-
* [Collection View](https://github.com/DevExpress-Examples/maui-collection-view-get-started)
36-
37-
## What's in This Repository
6+
# Get Started with the DevExpress Data Grid for .NET MAUI
387

398
The DevExpress Data Grid for .NET MAUI is a data-aware control designed to present and manage data in a tabular format.
409

41-
![MAUI Data Grid](./img/devexpress-maui-data-grid.png)
10+
![MAUI Data Grid](./img/maui-data-grid.png)
4211

4312
This example allows you to get started with the DataGridView component - bind it to a data source and configure its columns.
4413

45-
### Files to Look At
14+
### Files to Review
4615

4716
<!-- default file list -->
4817
* [MauiProgram.cs](./CS/DataGridExample/MauiProgram.cs)
Binary file not shown.
544 KB
Loading

CS/EditForm/Readme.md

+2-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
11
# Edit Cells - Edit Form
2-
This example shows how to set up the grid to display the Edit Values form when a user taps a cell. For a complete description, refer to the following help topic: [Enable the Edit Form](https://docs.devexpress.com/MobileControls/400993/xamarin-forms/data-grid/examples/edit-cells#how-to-enable-the-edit-form).
2+
This example shows how to set up the grid to display the Edit Values form when a user taps a cell. For a complete description, refer to the following help topic: [Enable the Edit Form](https://docs.devexpress.com/MAUI/403652/data-grid/edit-cell-values#edit-form).
33

4-
<img src="./img/default-edit-form.png"/>
5-
6-
To run the application:
7-
1. [Obtain your NuGet feed URL](http://docs.devexpress.com/GeneralInformation/116042/installation/install-devexpress-controls-using-nuget-packages/obtain-your-nuget-feed-url).
8-
2. Register the DevExpress NuGet feed as a package source.
9-
3. Restore all NuGet packages for the solution.
4+
<img src="./img/edit-form.png"/>
105

116
<!-- default file list -->
127
## Files to Review

CS/EditForm/img/default-edit-form.png

-22.8 KB
Binary file not shown.

CS/EditForm/img/edit-form.png

272 KB
Loading

CS/EditFormTemplate/Readme.md

+2-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
11
# Edit Cells - Custom Edit Form
2-
This example shows how to create a custom view for the grid's edit form and set up the grid to invoke this form when a user double taps a cell. For a complete description, refer to the following help topic: [Define a Custom Template for the Edit Form](https://docs.devexpress.com/MobileControls/400993/xamarin-forms/data-grid/examples/edit-cells#how-to-define-a-custom-template-for-the-edit-form).
2+
This example shows how to create a custom view for the grid's edit form and set up the grid to invoke this form when a user double taps a cell. For a complete description, refer to the following help topic: [Define a Custom Template for the Edit Form](https://docs.devexpress.com/MAUI/403652/data-grid/edit-cell-values#how-to-define-a-custom-template-for-the-edit-form).
33

4-
<img src="./img/edit-form-template.png"/>
5-
6-
To run the application:
7-
1. [Obtain your NuGet feed URL](http://docs.devexpress.com/GeneralInformation/116042/installation/install-devexpress-controls-using-nuget-packages/obtain-your-nuget-feed-url).
8-
2. Register the DevExpress NuGet feed as a package source.
9-
3. Restore all NuGet packages for the solution.
4+
<img src="./img/grid-edit-form-template.png"/>
105

116
<!-- default file list -->
127
## Files to Review
-78 KB
Binary file not shown.
Loading

CS/InPlaceEditors/Readme.md

+2-7
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
11
# Edit Cells - In-Place Editors
22

3-
This example demonstrates how to set an in-place editor template for a [TemplateColumn](https://docs.devexpress.com/MobileControls/DevExpress.XamarinForms.DataGrid.TemplateColumn)'s cell.
3+
This example demonstrates how to set an in-place editor template for a [TemplateColumn](https://docs.devexpress.com/MAUI/DevExpress.Maui.DataGrid.TemplateColumn)'s cell.
44

5-
<img src="./img/grid-edit-template.png"/>
6-
7-
To run the application:
8-
1. [Obtain your NuGet feed URL](http://docs.devexpress.com/GeneralInformation/116042/installation/install-devexpress-controls-using-nuget-packages/obtain-your-nuget-feed-url).
9-
2. Register the DevExpress NuGet feed as a package source.
10-
3. Restore all NuGet packages for the solution.
5+
<img src="./img/edit-template.png"/>
116

127
<!-- default file list -->
138
## Files to Review
221 KB
Loading
-45.9 KB
Binary file not shown.

CS/LoadMore/Readme.md

+4-9
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,11 @@
22

33
This example shows how to implement the grid's load-more functionality - when a user scrolls to the bottom of the grid, a set of new data items is added to the end of the grid. Data items for each next load (ten new orders) are generated randomly in code. The maximum number of loads a user is allowed to perform is 3. The total summary displays the count of data items currently loaded to the grid (it is automatically updated after each load).
44

5-
1. Set the [DataGridView.IsLoadMoreEnabled](https://docs.devexpress.com/MobileControls/DevExpress.XamarinForms.DataGrid.DataGridView.IsLoadMoreEnabled) property to **true** to enable the grid's load-more functionality.
6-
2. Create a command to be executed when a user scrolls to the bottom of the grid. Set the [DataGridView.IsRefreshing](https://docs.devexpress.com/MobileControls/DevExpress.XamarinForms.DataGrid.DataGridView.IsRefreshing) property to **false** after data is loaded to hide the loading indicator in the grid.
7-
3. Bind the [DataGridView.LoadMoreCommand](https://docs.devexpress.com/MobileControls/DevExpress.XamarinForms.DataGrid.DataGridView.LoadMoreCommand) property to the created command.
5+
1. Set the [DataGridView.IsLoadMoreEnabled](https://docs.devexpress.com/MAUI/DevExpress.Maui.DataGrid.DataGridView.IsLoadMoreEnabled) property to **true** to enable the grid's load-more functionality.
6+
2. Create a command to be executed when a user scrolls to the bottom of the grid. Set the [DataGridView.IsRefreshing](https://docs.devexpress.com/MAUI/DevExpress.Maui.DataGrid.DataGridView.IsRefreshing) property to **false** after data is loaded to hide the loading indicator in the grid.
7+
3. Bind the [DataGridView.LoadMoreCommand](https://docs.devexpress.com/MAUI/DevExpress.Maui.DataGrid.DataGridView.LoadMoreCommand) property to the created command.
88

9-
<img src="./img/grid-load-more-example.png"/>
10-
11-
To run the application:
12-
1. [Obtain your NuGet feed URL](http://docs.devexpress.com/GeneralInformation/116042/installation/install-devexpress-controls-using-nuget-packages/obtain-your-nuget-feed-url).
13-
2. Register the DevExpress NuGet feed as a package source.
14-
3. Restore all NuGet packages for the solution.
9+
<img src="./img/load-more-example.png"/>
1510

1611
<!-- default file list -->
1712
## Files to Review
-21.8 KB
Binary file not shown.

CS/LoadMore/img/load-more-example.png

203 KB
Loading

CS/PullToRefresh/Model.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public string Name {
1010
set {
1111
name = value;
1212
if (Photo == null) {
13-
resourceName = value.ToLower() + ".png";
13+
resourceName = value.ToLower();
1414
if (!String.IsNullOrEmpty(resourceName))
1515
Photo = ImageSource.FromResource(resourceName);
1616
}

CS/PullToRefresh/PullToRefresh.csproj

-10
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,6 @@
3434
<!-- Custom Fonts -->
3535
<MauiFont Include="Resources\Fonts\*" />
3636
</ItemGroup>
37-
<ItemGroup>
38-
<None Remove="Resources\Images\Beverages.png" />
39-
<None Remove="Resources\Images\Condiments.png" />
40-
<None Remove="Resources\Images\Confections.png" />
41-
<None Remove="Resources\Images\DairyProducts.png" />
42-
<None Remove="Resources\Images\Grains.png" />
43-
<None Remove="Resources\Images\MeatPoultry.png" />
44-
<None Remove="Resources\Images\Produce.png" />
45-
<None Remove="Resources\Images\Seafood.png" />
46-
</ItemGroup>
4737

4838

4939
<ItemGroup>

CS/PullToRefresh/Readme.md

+3-8
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,12 @@
22

33
This example shows how to set up the grid so that it allows users to request a content update with the pull-down gesture. To do this, follow the steps below.
44

5-
1. Set the [DataGridView.IsPullToRefreshEnabled](https://docs.devexpress.com/MobileControls/DevExpress.XamarinForms.DataGrid.DataGridView.IsPullToRefreshEnabled) property to **true** to enable the grid's pull-to-refresh functionality.
6-
2. Create a command to be executed when a user pulls the grid down. Set the [DataGridView.IsRefreshing](https://docs.devexpress.com/MobileControls/DevExpress.XamarinForms.DataGrid.DataGridView.IsRefreshing) property to **false** after data is refreshed to hide the refresh indicator in the grid.
7-
3. Bind the [DataGridView.PullToRefreshCommand](https://docs.devexpress.com/MobileControls/DevExpress.XamarinForms.DataGrid.DataGridView.PullToRefreshCommand) property to the created command.
5+
1. Set the [DataGridView.IsPullToRefreshEnabled](https://docs.devexpress.com/MAUI/DevExpress.Maui.DataGrid.DataGridView.IsPullToRefreshEnabled) property to **true** to enable the grid's pull-to-refresh functionality.
6+
2. Create a command to be executed when a user pulls the grid down. Set the [DataGridView.IsRefreshing](https://docs.devexpress.com/MAUI/DevExpress.Maui.DataGrid.DataGridView.IsRefreshing) property to **false** after data is refreshed to hide the refresh indicator in the grid.
7+
3. Bind the [DataGridView.PullToRefreshCommand](https://docs.devexpress.com/MAUI/DevExpress.Maui.DataGrid.DataGridView.PullToRefreshCommand) property to the created command.
88

99
<img src="./img/grid-pull-to-refresh.png"/>
1010

11-
To run the application:
12-
1. [Obtain your NuGet feed URL](http://docs.devexpress.com/GeneralInformation/116042/installation/install-devexpress-controls-using-nuget-packages/obtain-your-nuget-feed-url).
13-
2. Register the DevExpress NuGet feed as a package source.
14-
3. Restore all NuGet packages for the solution.
15-
1611
<!-- default file list -->
1712
## Files to Review
1813

0 commit comments

Comments
 (0)