Commented Unassigned: Caliburn.Micro subscribes multiple times to...
I have the problem that CM seems to subscribe twice to PropertyChanged. Or, depending on the POV / expected behavior: It doesn't *unsubscribe* when the item is deactivated.The scenario is the...
View ArticleReopened Unassigned: Caliburn.Micro subscribes multiple times to...
I have the problem that CM seems to subscribe twice to PropertyChanged. Or, depending on the POV / expected behavior: It doesn't *unsubscribe* when the item is deactivated.The scenario is the...
View ArticleEdited Unassigned: Caliburn.Micro subscribes multiple times to...
I have the problem that CM seems to subscribe twice to PropertyChanged. Or, depending on the POV / expected behavior: It doesn't *unsubscribe* when the item is deactivated.The scenario is the...
View ArticleCommented Unassigned: Caliburn.Micro subscribes multiple times to...
I have the problem that CM seems to subscribe twice to PropertyChanged. Or, depending on the POV / expected behavior: It doesn't *unsubscribe* when the item is deactivated.The scenario is the...
View ArticleNew Post: Unit Testing the View Model
Bump. I've just run in to this problem as well. I have some logic in the OnViewLoaded() override (not much, but there's still something I'd like to test), and I've tried desperately to find a solution...
View ArticleCommented Unassigned: Caliburn.Micro subscribes multiple times to...
I have the problem that CM seems to subscribe twice to PropertyChanged. Or, depending on the POV / expected behavior: It doesn't *unsubscribe* when the item is deactivated.The scenario is the...
View ArticleCommented Unassigned: Caliburn.Micro subscribes multiple times to...
I have the problem that CM seems to subscribe twice to PropertyChanged. Or, depending on the POV / expected behavior: It doesn't *unsubscribe* when the item is deactivated.The scenario is the...
View ArticleCommented Unassigned: Caliburn.Micro subscribes multiple times to...
I have the problem that CM seems to subscribe twice to PropertyChanged. Or, depending on the POV / expected behavior: It doesn't *unsubscribe* when the item is deactivated.The scenario is the...
View ArticleCommented Unassigned: Caliburn.Micro subscribes multiple times to...
I have the problem that CM seems to subscribe twice to PropertyChanged. Or, depending on the POV / expected behavior: It doesn't *unsubscribe* when the item is deactivated.The scenario is the...
View ArticleCreated Unassigned: Caliburn.Micro framework crash due to ActionMessage [329]
Caliburn.Micro framework will crash randomly in my application due to ActionMessage.I found in ActionMessage.cs, there is a action called SetMethodBinding. The crashes come out randomly (expecially...
View ArticleNew Post: Problem with handling custom conventions - views and view models...
I have ShellView and ShellViewModel in single assembly named MyApp.Shell. ViewModel:namespace MyApp.Shell.ViewModels { public class ShellViewModel : Conductor<IScreen>.Collection.AllActive,...
View ArticleCommented Unassigned: Caliburn.Micro framework crash due to ActionMessage [329]
Caliburn.Micro framework will crash randomly in my application due to ActionMessage.I found in ActionMessage.cs, there is a action called SetMethodBinding. The crashes come out randomly (expecially...
View ArticleCommented Issue: DefaultCloseStrategy.Execute throws NullReferenceException...
DefaultCloseStrategy chokes up, when I use coroutines in CanClose method of ViewModel (using Screen as base) and throws NullReferenceException:```public override void CanClose(Action<bool>...
View ArticleSource code checked in, #dce6b44fb7074308b174a76f2597d2ed3f9f143b
Fix NullReferenceException in ActionMessage.SetMethodBinding() (issue 329)
View ArticleEdited Unassigned: Caliburn.Micro framework crash due to ActionMessage [329]
Caliburn.Micro framework will crash randomly in my application due to ActionMessage.I found in ActionMessage.cs, there is a action called SetMethodBinding. The crashes come out randomly (expecially...
View ArticleSource code checked in, #2b41f385c6ace8e65b21f5e88e7259bbe5a2c172
Update Windows.UI.Interactivity and Callisto (WinRT only)
View ArticleSource code checked in, #bb007a0efb15847046902760332a6b7be64dd928
Fix possible NullReferenceException in Parameter
View ArticleNew Post: Unit Testing the View Model
You could always have your own method call in the OnViewLoaded() that does all of the logic.protected override OnViewLoaded() { MyLogic(); } public void MyLogic() { //Do stuff } You can then unit test...
View ArticleNew Post: Multiprocess and WindowManager
We have developed a multiprocess application. What we have is a simple main application with a tab control. Each tab item contains a separate executable. We use interop to achieve that. Everything...
View ArticleNew Post: Auto Logout on user inactivity
In my Silverlight App I need an auto logout on userinactivity. I tried the solution with mouse move event in the shell view model:private void StartAutoLogoutTimer() { Timer = DateTime.Now;...
View Article