mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-07 19:36:40 +00:00
22 lines
356 B
Markdown
22 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();
|
|
}
|
|
}
|
|
}
|
|
```
|