question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Integration with Caliburn.Micro is not working.

See original GitHub issue

Integration with Caliburn.Micro is not working. Instead of calling NotifyOfPropertyChange from Caliburn, it is calling OnPropertyChanged.

public bool IsBusy
{
	[CompilerGenerated]
	get
	{
		return this.<IsBusy>k__BackingField;
	}
	[CompilerGenerated]
	set
	{
		if (this.<IsBusy>k__BackingField == value)
		{
			return;
		}
		this.<IsBusy>k__BackingField = value;
		this.OnPropertyChanged(<>PropertyChangedEventArgs.IsBusy); <<<<<<<<<<
	}
}

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Comments:10 (8 by maintainers)

github_iconTop GitHub Comments

2reactions
SimonCroppcommented, Apr 9, 2018

this is now deployed. pending a nuget index update. thanks @ltrzesniewski

2reactions
SimonCroppcommented, Apr 5, 2018

Yep happy to take option 1 as a PR

Read more comments on GitHub >

github_iconTop Results From Across the Web

WPF Caliburn integration - Interaction issue
I'm working on a WPF application and I want to integrate Caliburn Micro. In the main page I have a content presenter which...
Read more >
Basic Configuration, Actions and Conventions
Basic Configuration, Actions and Conventions. Starting a project: Open Visual Studio. Create a new WPF Application called “Caliburn.Micro.Hello”.
Read more >
INotifyPropertyChanged and Caliburn.Micro
For each property, you must have an explicit field, and you must manually notify all dependencies and the property itself. The result is...
Read more >
Highest scored 'caliburn.micro' questions - Stack Overflow
I'm working on an application using Caliburn.Micro and Autofac. In my composition root I'm now facing a problem with Autofac: I have to...
Read more >
RadWindow in Caliburn Micro
A small project that shows how to extend the Caliburn Micro framework to enable the use of a RadWindow as dialog in Caliburn...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found