caliburn.micro Questions
1
Solved
How do I pass in an enum inside a message action? for instance,
XAML:
<UserControl.ContextMenu>
<ContextMenu StaysOpen="True">
<MenuItem Header="Arrow"
cal:Message.Attach="Chang...
Tyler asked 17/10, 2012 at 12:14
1
Solved
I have an image on my wpf page which opens an image file form hard disk. The XAML for defining the image is:
<Image Canvas.Left="65" Canvas.Top="5" Width="510" Height="255" Source="{Binding Pa...
Danell asked 12/10, 2012 at 20:41
1
Solved
I am attempting to have a key binding cause an event within the view model. I have been search for a while and have not come across any solutions that have worked thus far, unfortunately.
This is ...
Fillet asked 3/10, 2012 at 18:38
1
Solved
I am just learning WPF and Caliburn.Micro. I am following the code that presented here:
http://caliburnmicro.codeplex.com/wikipage?title=Customizing%20The%20Bootstrapper&referringTitle=Document...
Pencel asked 20/9, 2012 at 12:26
2
Solved
I'm new to Caliburn.Micro and I'm wondering what is the best way to handle user Login/Logout cycles in my application. I saw some suggestions online to implement this using an empty Shell-View whic...
Evite asked 15/8, 2012 at 9:10
3
Solved
I haveViewModel1 and View1 associated with it. I start dialog window from ViewModel2 (some another viewmodel) using IWindowManager object. The code from ViewModel2 class:
windowManager.ShowDialog(...
Blastomere asked 10/4, 2012 at 14:23
2
Solved
Hope you're all well.
I am using Caliburn.Micro with Telerik's WPF controls to build a tabbed interface. Using RadTabControl I have the following code;
<telerik:RadTabControl x:Name="Items" Gr...
Epiblast asked 6/11, 2010 at 13:15
3
Solved
I'm quite new to Caliburn.Micro, so I guess this has a simple answer (or at least I hope it has :))
I have a ViewModel with a property called ConnectedSystem that has a sub-property called Name.
...
Adali asked 16/5, 2011 at 7:18
2
Solved
Thus far, my testing has shown that all standard approaches, examples, and frameworks leveraging the MVVM pattern in silverlight suffer from a huge problem: massive memory leaks which prevent VMs f...
Harrison asked 17/5, 2012 at 22:23
2
Solved
I need to write a small application to read a configuration file and generate some report with it. I was hoping to finally use MVVM but it's quite tricky to get started. Oh, I'm using Caliburn.Micr...
Weeden asked 4/4, 2012 at 17:4
1
Solved
I have a MainView.xaml, binding to a MainViewModel just fine.
What I wanted to try out was splitting a lot of controls I have on my main form into UserControls.
Now I put the UserControls inside ...
Inductive asked 3/4, 2012 at 16:9
1
Solved
I'm relatively low on the curve for both WPF and Caliburn.Micro.
My goal here is to move the binding of the combobox selected item from the ShellView's code behind to the View Model, the same as i...
Predicable asked 7/3, 2012 at 20:6
1
Solved
I'm a novice WPF programmer. I'm trying to add some structure to my code: both User Controls and MVVM.
Researching here, I've found that people recommend Caliburn.Micro. On the other hand, I've fo...
Initiate asked 6/3, 2012 at 8:39
1
Solved
When the user clicks the close button of a Window, is it possible to cancel the close from the ViewModel or do I have to resort to code behind?
From what I can tell, CanClose or TryClose doesn't d...
Glib asked 9/1, 2012 at 15:9
2
Solved
This is my XAML View (some code omitted for readability):<Window ... xmlns:c="http://www.caliburnproject.org">
<Button Content="Close without saving" c:Message.Attach="Close(false)" />
<...
Hellenhellene asked 7/11, 2011 at 10:35
1
I am currently getting into WPF and Caliburn.Micro ,for now without something like MEF or Autofac.
Right now i am trying to execute some code in a viewmodel right after its view becomes visible.
...
Fishhook asked 28/10, 2011 at 16:48
1
I have service class in external assembly, I inject this class in view model class with MEF. I need call service method every 3-4 seconds from view model.
I get from service new data as Dictionary...
Tauten asked 20/12, 2010 at 19:29
3
Solved
I have a chart that I'm displaying to the user and I want to be able to export the chart as an image to disk so they can use it outside of the application (for a presentation or something).
I've m...
Scotland asked 27/9, 2011 at 1:4
2
Solved
With Caliburn.Micro I'd like to know the pros and cons of exposing an EF4 Entity as a property of the ViewModel (a technique discussed here and here). This allows me to avoid writing getters and se...
Geodetic asked 14/9, 2011 at 21:0
1
Solved
I'm binding ViewModels to ContentControls and letting Caliburn taking care of creating and binding the view. However, I would like to customize Caliburns ViewModel->View convention based on which C...
Gottuard asked 25/8, 2011 at 12:14
1
Solved
I've been doing some prototype work on a new Silverlight application using Caliburn Micro as our MVVM Framework. The team has generally been happy with it. In order to address some issues with thro...
Lebkuchen asked 21/7, 2011 at 15:55
1
Solved
How do you apply a ValueConverter to a convention-based Caliburn.Micro binding? or do you need to use the {Binding} syntax?
I know I could do this
<TextBlock
Text="{Binding Foo, Converter=foo...
Harmonia asked 5/7, 2011 at 11:8
1
Solved
I would like to bind the methodname propererty of the caliburn.micro actionmessage to a method on a child object of the ViewModel.
How I would imagine it should work:
<i:Interaction.Triggers&g...
Strickle asked 7/6, 2011 at 9:12
1
Solved
I'd like to use x:Name binding to resolve property bindings in nested, satellite user controls via Caliburn.Micro's conventions.
The UI for our Views is pretty standard. We have a satellite projec...
Alcott asked 3/6, 2011 at 17:35
2
Solved
I am just starting with Caliburn Micro. I want to have a combo box with a list of strings, and when the user selects an item, I want to have some notify method called. It should be simple, right? I...
Mozza asked 29/4, 2011 at 20:57
© 2022 - 2024 — McMap. All rights reserved.