Dispatcher hidden from IntelliSense in VS2017

I just started using VS2017 and noticed that in WPF, the Dispatcher object no longer appears in IntelliSense when editing inside the window.

Looking at the definition, I see:

 <EditorBrowsable(EditorBrowsableState.Advanced)> Public ReadOnly Property Dispatcher As Dispatcher 

However, the hide option is not available for Visual Basic:

enter image description here

Now it is entirely possible, this is a mistake in VS2017, but if it is not an idea?

+5
source share
1 answer

in the IntelliSense function, the TheDispatcher function will be displayed:

 <System.Runtime.CompilerServices.Extension> Public Function TheDispatcher(dispatcherObject As DispatcherObject) As Dispatcher Return dispatcherObject.Dispatcher End Function 
+3
source

Source: https://habr.com/ru/post/1265493/


All Articles