Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/rogerwcpt/weissdigital.xamarin.addins.mvxcontentpage
- Owner: rogerwcpt
- Created: 2018-11-25T15:45:01.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-25T18:26:14.000Z (almost 6 years ago)
- Last Synced: 2024-08-01T19:43:58.712Z (3 months ago)
- Topics: forms-mvxcontentpage, mvvmcross, xamarin, xamarin-forms, xaml
- Language: C#
- Size: 115 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-monodevelop - weissdigital.xamarin.addins.mvxcontentpage
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)