MvvmCross is an open source mvvm framework using C# on Windows Phone, Xamarin.iOS (MonoTouch), Xamarin.Android (MonoDroid), WinRT for Windows 8 and WPF - with .Mac, Silverlight and Unity-3D on the way.
1
vote
1answer
17 views
Creating a PCL that targets Monodroid
I am looking at the shiny MVVMCross project, specifically the N+1 days of MVVMCross series, and I notice that @slodge creates a PCL that targets Mono for android and Monotouch (at 1:10).
I have ...
1
vote
1answer
22 views
MvvmCross: Application wide view model?
I am loving MvvmCross so far, but I am new to the MVVM technique. MVVM seems to center around the View and ViewModel and navigating between them. However, what about application-wide model items? ...
1
vote
1answer
14 views
MvxTrace output in WPF project
I'm not seeing any MvxTrace output in my WPF project. I'm using the default project template created by NuGet.
Is there anything special that must be done or is this a bug?
1
vote
1answer
28 views
MvvmCross: How to navigate to something besides a ViewModel?
What would I put in my MvxCommand to navigate to a simple URL? All mobile platforms have a mechanism to ask the OS for an Activity or ViewController that can display the contents of a URL. How would ...
0
votes
1answer
26 views
Xamarin: Using native libraries in MVVMCross
Building a cross platform app that utilizes a native C library (using P/Invoke) to send commands to a remote server, how can it be architected to suit the MVVMCross framework?
Thanks!
1
vote
1answer
13 views
Settings in MvvmCross Core assembly?
In porting my WPF MVVM app to MvvmCross, what would be the recommended approach for persistent user settings in the Core assembly? Currently I'm using Properties.Settings for this task. Ideally, I'd ...
0
votes
1answer
41 views
null reference exception in android view Visibility binding
I have an MvxListView with a few items.
Each item consists of 2 components, one is visible and the other is not (Gone).
The gone component visibility property is bound to a boolean property on the ...
3
votes
1answer
57 views
Xamarin: MVVMCross info
Adapting the MVVMCross framework in Xamarin crossplatform application development, we have PCL (containing Model and View Model) and View (for each platform) as in here.
a) Where does the ...
1
vote
1answer
60 views
Xamarin IDE and visualstudio for windows +Mvvmcross
I have some confusions About the IDE to use for MvvmCross
a) VisualStudio (VS) uses Xamrarin.iOS and Xamarin.Android plugin for iOS and Android development. But can we also use PCL(Portable Class ...
1
vote
1answer
32 views
Dynamic Binding UIWebView in MVVMCross
I'm trying to make a change to sample project Cirrious.Conference. In particular in the Touch View at SessionView class and at this class
...
1
vote
1answer
24 views
Mvvmcross tableviewcell binding error
I wrote a mvvmcross touch sample app, basically a rip of the CustomerManagement tutorial.
I have one customer in my CustomersListViewModel.
When I run the app I get the following error in the output ...
1
vote
2answers
26 views
ListBoxItem with ContextMenu item to Command
I'm using a ContextMenu from the Microsoft.Phone.Controls.Toolkit:
xmlns:toolkit="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls.Toolkit"
And want to delete a ListBoxItem ...
2
votes
5answers
67 views
Error installing MVVMCross from nuget into a PCL
When I try to install MvvmCross into a new PCL I receive an error. The console log is below:
Package Manager Console Host Version 2.5.40416.9020
Type 'get-help NuGet' to see all available NuGet ...
5
votes
1answer
110 views
MvvMCross 3.0.6 Nuget package installation issue
I am trying to install MVVMCross NuGet package using NuGet 2.5 version. I have added the mono android and touch file to Profile104 folder. Still I am getting following exception:
Attempting to ...
1
vote
1answer
28 views
Testing an MVVMCross application
I am working on my first MVVMCross application and I am trying to set up a good testing framework. I have looked at the testing Stuart is doing in his TwitterSearch app but I have found nothing that ...
1
vote
1answer
19 views
MvvmCross Reachability on Windows Phone
I'm trying to use Cirrious.MvvmCross.Plugins.Network.Reachability on Windows Phone 8. I have added the Network Plugin to my WP8 project and my core. The plugin bootstrapper has been added to the ...
1
vote
1answer
27 views
Custom types in Navigation parameters in v3
In v3 if I wanted to pass two objects to another viewmodel:
public class Dog
{
}
public class Cat
{
}
var dog = new Dog();
var cat = new Cat();
ShowViewModel<SomeViewModel>(new {Dog = dog, ...
2
votes
2answers
35 views
Non-PCL dependencies w/ MvvmCross
Our application has several dependencies that are not available as PCL libraries (e.g. RestSharp, Websocket4Net, Reactive Extensions), but are available for each platform we plan to target. What's ...
1
vote
2answers
37 views
Composite views in MvvmCross
I have a WPF MVVM application that I'd like to refactor to use MvvmCross to support a WPF and Mono for Android implementations.
Our application's views consists of:
A toolbar that is always visible ...
1
vote
1answer
30 views
Child containers in MvvmCross IoC
I have a WPF MVVM application that I'd like to refactor to use MvvmCross to support a WPF and Mono for Android implementations.
Currently we are using Unity 3.0 for dependency injection and rely on ...
3
votes
1answer
46 views
MvvmCross - Android: How to perform App initialization on Main Thread
I have an Android application using MvvmCross. The App launches via an MvxSplashScreenActivity as the main launcher and I provided a setup class deriving from MvxAndroidSetup.
It seems however that ...
2
votes
1answer
62 views
Best way to have single View/ViewModel/Xaml link to multiple Json resource files in MvvmCross
Inside my application I have many help pages, which all have a similar layout - header and bodytext.
The way I have it structured at the moment, for every single Help page I have a View, ViewModel, ...
2
votes
1answer
22 views
MvxSimpleIoCContainer and multiple concrete implementations
If I have interface IMvxScreen and multiple concrete classes that implement IMvxScreen, is it possible to resolve all implementations at once?
public MyClass(IScreen[] screens)
{
3
votes
2answers
62 views
MvvmCross assembly referenced from Cirrious.MvvmCross.dll could not be loaded: System
I'm trying to set up a MvvmCross application project and run unit tests against it (namely the view models in it). I'm using Xamarin Studio on OS X (v. 4.0.4, latest at the time of writing).
The ...
1
vote
3answers
58 views
Trouble with xamarin.ios/monotouch , mvvmcross and linking
I have an irritating issue, if I use Link SDK Assemblies only in xamarin studio I get an exception, if I use dont link the exception is not happening. I have located the issue to be part of an third ...
3
votes
1answer
61 views
MvvMCross Binding with format string
How can i add a format for a binding, that formats the bound value with string.Format or something similar? I saw in other threads, that you can pass a converterName.
Does a converter for this ...
0
votes
1answer
37 views
Image Caching from http sources
I've read in a post from December 1st 2012 at Slodge bloch that File and DownloadCache plugins could be used for downloading and caching images from http sources. I think that's what I need in the app ...
0
votes
1answer
26 views
Using MvvmCross in a web project
Is there a way or plans to target a web UI with MvvmCross?
I have done a lot of XAML and I was looking around the source code for a Cirrious.MvvmCross.Silverlight
If not, is there any reason that ...
2
votes
1answer
53 views
Storing App Settings in SQLite
I'm developing my first MvvmCross application. I'm trying to store app settings with SQLite but I'm getting some exceptions and I'm afraid I'm missing something. Hope somebody can guide me on using ...
1
vote
1answer
52 views
How do you bind a ViewModel to the Windows 8 Settings pane in MvvmCross?
I've been looking at MvvmCross for cross platform mobile development.
Since navigation of views is done by calling ShowViewModel<>(), how would you create the settings pane (which is a user ...
0
votes
1answer
43 views
Tab Fragments with MvvmCross
I'm working on an app that uses MonoTouch, MonoDroid, and MvvmCross. My app has a screen that has tabs. I need that screen to work on both Android and iOS devices. In looking at the tutorials, it ...
1
vote
1answer
45 views
Using MvxGridView in MvvmCross
What I want to do is s simple screen showing multiple items in a Grid. This can on android easily be archived using a GridView.
In MvvmCross I guess I have to use MvxGridView to archive the same.
...
0
votes
1answer
21 views
How to add a 3rd party Log framework ( log4net ) to mvvmcross?
I would like to use log4net in mvvmcross to replace MvxDebugTrace, but I don't want to change the core source code, is it possible ?
0
votes
1answer
38 views
MvvmCross and Xcode Storyboard
The storyboard xcode are supported in mvvmcross v3?
If yes, how? There is an example?
Thanks
0
votes
1answer
44 views
MvvmCross (v3): Is that wrong to (try to) use behaviours and storyboards in a multi-platform application?
i would like to know what is considered the best practice (or how other people would have solved this problem) in this scenario.
I'm trying to create a simple game with MvvmCross that will ...
2
votes
1answer
41 views
Detecting whether a ViewModel's associated View is showing/not showing
I have some ViewModels where I use a Service, which is quite bandwidth intensive. However this service is only required when viewing specific Views in the application.
In MvvmCross vNext I used the ...
1
vote
1answer
34 views
MvvmCross MvxHttpImageView error
I'm trying to bind a web image in a listview on Android, using Xamarin.Android and mvvmcross. I'm getting this error though.
MvxBind:Error: 7.13 View type not found - Mvx.MvxHttpImageView
...
0
votes
1answer
47 views
Start MvxActivity from normal Activity?
Particularly the Navigation between the Views over the ViewModels looks like that:
ShowViewModel<InfoViewModel>();
Or between normal Activities:
context.StartActivity(typeof(InfoActivity));
...
0
votes
0answers
58 views
How to use contextmenu for listview using mvvmcross?
I try to display a contextMenu with longClick action on an item in listView(Mvx.MvxBindableListView).
I tried something like this but it doesn't work (Nothing appear when longClicking)
Someone now how ...
1
vote
1answer
35 views
Dynamic list element in MvxDialogViewController
We have a dialog inheriting MvxDialogViewController containing two Sections - TheRadios and TheList.
In response to the user changing the radio within TheRadios, we repopulate TheList (in the view ...
1
vote
1answer
53 views
MvvmCross: Unit-testing services with plugins
I am creating a cross-platform project with MvvmCross v3 and Xamarin solution and i would like to create some unit-tests.
This seems a bit outdated, so i was trying to follow this and it worked as ...
0
votes
1answer
29 views
MvxWpfView inheritence and Visual Studio XAML editor
I am creating a Wpf version of our application under MvvmCross (Vee Three).
My views inherit from MvxWpfView.
When I try to add an event Handler from XAML editor
(for instance <Button ...
1
vote
1answer
62 views
MvvmCross V3 + Nuget - how to resolve dll not found issue?
I am attempting to work through the N+1 TipCalc tutorial & get the following error when trying to compile the core project:
Error 1 Metadata file ...
0
votes
1answer
59 views
Creating a Tab Based Interface in MonoDroid with MvvmCross
I'm new to Android development. I'm actually developing an app using MonoDroid and MvvmCross. I'm trying to create a basic tabbed interface. I saw this example. However, it seems outdated (maybe I'm ...
1
vote
1answer
68 views
MvvmCross Specifying a datacontext for pages
I'm trying to develop a cross-platform app using mvvmcross.
More specifically I'm trying to port an app written for wp7 to all the other platforms. I've used blend for WP7 to design the animations ...
1
vote
0answers
73 views
Android - Animation resets after list update - monodroid and mvvmcross
I am implementing a "slidein" menu similar to the one found in the facebook app - see the images. It is implemented using mono droid and mvvmcross.
The way I am achieving this, is to have two layouts ...
1
vote
1answer
27 views
TabHost pass Parameter in CreateIntentFor<>
After downloading the newest Version of mvvmcross (V3) I had some work to do, to upgrade some of my projects to the new state. Last thing I'm not able to fulfill is to pass a parameter to the ...
0
votes
1answer
44 views
Mvvmcross support NotifyPropertyChanged event where event args contain the old value?
There is a UIHealthBar which is binded to a viewmodel property that is changed from 5 to 10. I would like to animate it with filled color from a old value (5) to new value (10). How can I do it in ...
0
votes
2answers
59 views
How to store picture in sqlite table?
I'm trying to store a picture in sqlite table. I'm using mvvmcross vnext and its plugin sqlite.
I have this class Image for the table "Image" in the database :
public class Image : Model
{
...
3
votes
2answers
74 views
What is the best way to handle GoBack for the different MvvmCross (v3) platforms
In MvvmCross v3 I use ShowViewModel to navigate to different pages. Before converting over to Mvx I'd use the NavigationService.GoBack() method to go back to the previous page. The advantage being ...





