mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-07 03:16:41 +00:00
23 lines
356 B
Markdown
23 lines
356 B
Markdown
|
# Page.xaml.cs
|
||
|
|
||
|
```cs
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.ComponentModel;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
using Xamarin.Forms;
|
||
|
|
||
|
namespace AppName
|
||
|
{
|
||
|
public partial class PageName : ContentPage
|
||
|
{
|
||
|
public PageName()
|
||
|
{
|
||
|
InitializeComponent();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
```
|