wpf - Visual Studio 2013 C# The type or namespace name IVSStatusBar could not be found -


i trying add status bar working application. i'm using visual studio 13, wpf, c#.

public void setstatusbar(string text) { ivsstatusbar statusbar = (ivsstatusbar)getservice(typeof(svsstatusbar)); }

i these errors: type or namespace name 'ivsstatusbar' not found (are missing using directive or assembly reference?) name 'getservice' not exist in current context , first message again 'svsstatusbar'

i have recent sdk. using statements are:

using system using system.io; using system.collections.generic; using system.linq; using system.text; using system.threading.tasks; using system.windows; using system.windows.controls; using system.windows.data; using system.windows.documents; using system.windows.input; using system.windows.media; using system.windows.media.imaging; using system.windows.navigation; using system.windows.shapes; using gembox.spreadsheet; 

what missing? shouldn't difficult find.

you need using microsoft.visualstudio.shell.interop

the msdn article should provide more information might need.


Comments

Popular posts from this blog

How to group boxplot outliers in gnuplot -

cakephp - simple blog with croogo -

bash - Performing variable substitution in a string -