Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rogerwcpt/weissdigital.xamarin.addins.mvxcontentpage

Creates a Forms MvxContentPage with a CodeBehind class.
https://github.com/rogerwcpt/weissdigital.xamarin.addins.mvxcontentpage

forms-mvxcontentpage mvvmcross xamarin xamarin-forms xaml

Last synced: 14 days ago
JSON representation

Creates a Forms MvxContentPage with a CodeBehind class.

Awesome Lists containing this project

README

        

# weissdigital.xamarin.addins.mvxcontentpage
Creates a Forms MVVMCross MvxContentPage with a CodeBehind class that extends MvxViewModel.

![Add File Dialog](screenshot.png)

### The files that are created are as follows:

##### Xaml File:
```xml

```

##### Xaml Code Behind File:
```C#
using MvvmCross.Forms.Views;
using MyFormsApp.ViewModels;

namespace MyFormsApp
{
public partial class PageView : MvxContentPage
{
public PageView()
{
InitializeComponent();
}
}
}
```

##### ViewModel File:
```C#
using MvvmCross.ViewModels;

namespace TipCalc.ViewModels
{
public partial class PageViewModel : MvxViewModel
{
public PageViewModel()
{
}
}
}
```

### Notes

Nuget Packages Required in your Core Project:

- [Xamarin.Forms](https://www.nuget.org/packages/Xamarin.Forms)
- [MvvmCross](https://www.nuget.org/packages/MvvmCross)
- [MvvmCross.Forms](https://www.nuget.org/packages/MvvmCross.Forms)

## Download AddIn
![WeissDigital.Xamarin.Addins.MvxContentPage_1.0.mpack](https://github.com/rogerwcpt/weissdigital.xamarin.addins.mvxcontentpage/releases/download/1.0/WeissDigital.Xamarin.Addins.MvxContentPage_1.0.mpack)