Open ArchieCoder opened 8 months ago
I suspect this issue will be heavily mitigated in 17.10 Preview 1 by #68214
Any update on this? I'm on 17.9.6.
No update. Do you have a repro you could provide us with?
This is not the same callstack, but it is the same exception description
I just deleted the whole property: IsApplicationNameShown
public sealed partial class TitleControl : UserControl
{
public static readonly DependencyProperty TitleProperty = DependencyProperty.Register(
nameof(Title), typeof(string), typeof(TitleControl), null);
public TitleControl()
{
InitializeComponent();
}
public bool IsApplicationNameShown
{
get => (bool)GetValue(IsApplicationNameShownProperty);
set => SetValue(IsApplicationNameShownProperty, value);
}
public string Title
{
get => (string)GetValue(TitleProperty);
set => SetValue(TitleProperty, value);
}
}
Note that this will generally not appear following #68214 (17.10 Preview 1).
I see now I mentioned that above.
Latest VS version. Exception happens while coding.