Remove/hide the toolbar in the Smart Client

Is it any way i can remove the whole toolbar in the Smart Client?

I know I can hide it, so it is barely visible.

Is it any way that i can remove it, or hide it completely?

I have assumed that toolbar we are talking about is the toolbar that comes up from the bottom when you hover the mouse cursor over a view item. Confusingly we have also a toolbar that contains the Setup button and can be extended with more buttons.

Assuming that you are developing your own plugin view item, you can control whether the toolbar is visible by using the ShowToolbar property on the ViewItemWpfUserControl (or ViewItemUserControl).

https://doc.developer.milestonesys.com/html/index.html?base=gettingstarted/intro_theme.html&tree=tree_search.html?search=showtoolbar

If you are not developing a plugin view item or the item you want to control is the built-in Camera view item:

You cannot control this by using MIP plugin code.

You can use this tip in the Smart Client. Find the View you want to change, go into Setup mode, use the minimize button to minimize the toolbar, go out of Setup mode. Now the toolbar is not hidden but the minimized state is persisted so that you do not need to use the minimize arrow every time you change to the view.

Yes, I am talking about the toolbar that comes up when your mouse hovers over a view item. And i am developing a plugin. The ShowToolbar property would have been a good solution, but the property is read only.

The property is read-only, yes. But please keep in mind that it is your plugin so you implement the property. Looking at the VideoReplay sample you will find this code in the VideoReplayViewItemUserControl

/// <summary>
/// Show toolbar to enable the print function
/// </summary>
public override bool ShowToolbar
{
	get { return true; }
}

I am sorry I missed that. Thank you for explaining. It worked perfectly.