Closed kuangxj closed 5 months ago
Description I have a class ScreenEx that inherits from Screen, rewriting OnActivate in a new ViewModel that is unresponsive
To Reproduce
class ScreenEx : Screen { public string ContentId { get; set; } = Guid.NewGuid().ToString(); } class TestViewModel:ScreenEx,IDisposable { protected override void OnActivate() { // After F9 ,not work. base.OnActivate(); } public void Dispose() { } }
Version Info
Additional Info Add any other context about the problem here.
I tried to reproduce the problem using your code, but it worked fine.
I replied after trying.
I'm not sure what you mean by that
I fix it,thanks.
Description I have a class ScreenEx that inherits from Screen, rewriting OnActivate in a new ViewModel that is unresponsive
To Reproduce
Version Info
Additional Info Add any other context about the problem here.