Skip to content

Commit 76b9d83

Browse files
authored
Sample Changes partially added
1 parent 1bd11f4 commit 76b9d83

30 files changed

+742
-0
lines changed

LoadMore_MVVM/SfListViewSample.sln

Lines changed: 337 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<Application xmlns="http://xamarin.com/schemas/2014/forms"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
4+
x:Class="SfListViewSample.App">
5+
<Application.Resources>
6+
7+
</Application.Resources>
8+
</Application>
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
using System;
2+
using Xamarin.Forms;
3+
using Xamarin.Forms.Xaml;
4+
5+
[assembly: XamlCompilation (XamlCompilationOptions.Compile)]
6+
namespace SfListViewSample
7+
{
8+
public partial class App : Application
9+
{
10+
public App ()
11+
{
12+
InitializeComponent();
13+
14+
MainPage =new NavigationPage( new MainPage());
15+
}
16+
17+
protected override void OnStart ()
18+
{
19+
// Handle when your app starts
20+
}
21+
22+
protected override void OnSleep ()
23+
{
24+
// Handle when your app sleeps
25+
}
26+
27+
protected override void OnResume ()
28+
{
29+
// Handle when your app resumes
30+
}
31+
}
32+
}
19.9 KB
Loading
18.6 KB
Loading
14 KB
Loading
13.6 KB
Loading
29.1 KB
Loading
29.1 KB
Loading
20.1 KB
Loading

0 commit comments

Comments
 (0)