<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: Matlab toolstrip &#8211; part 1	</title>
	<atom:link href="https://undocumentedmatlab.com/articles/matlab-toolstrip-part-1/feed" rel="self" type="application/rss+xml" />
	<link>https://undocumentedmatlab.com/articles/matlab-toolstrip-part-1?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=matlab-toolstrip-part-1</link>
	<description>Professional Matlab consulting, development and training</description>
	<lastBuildDate>Wed, 06 Dec 2023 21:55:46 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.2</generator>
	<item>
		<title>
		By: Amin zaami		</title>
		<link>https://undocumentedmatlab.com/articles/matlab-toolstrip-part-1#comment-523205</link>

		<dc:creator><![CDATA[Amin zaami]]></dc:creator>
		<pubDate>Wed, 06 Dec 2023 21:55:46 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=7952#comment-523205</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://undocumentedmatlab.com/articles/matlab-toolstrip-part-1#comment-469699&quot;&gt;Gang YAO&lt;/a&gt;.

Use below code, for newer version of MATLAB after 2019 to access Toolstrip:
&lt;pre lang=&quot;matlab&quot;&gt;
title = &#039;sample&#039;;
app = matlab.ui.internal.desktop.ToolGroup(title);
tabgroup = matlab.ui.internal.toolstrip.TabGroup();
tab = tabgroup.addTab(&#039;HOME&#039;);
tab.Tag = &#039;tabHome&#039;;
app.addTabGroup(tabgroup);
app.open()
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://undocumentedmatlab.com/articles/matlab-toolstrip-part-1#comment-469699">Gang YAO</a>.</p>
<p>Use below code, for newer version of MATLAB after 2019 to access Toolstrip:</p>
<pre lang="matlab">
title = 'sample';
app = matlab.ui.internal.desktop.ToolGroup(title);
tabgroup = matlab.ui.internal.toolstrip.TabGroup();
tab = tabgroup.addTab('HOME');
tab.Tag = 'tabHome';
app.addTabGroup(tabgroup);
app.open()
</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Gang YAO		</title>
		<link>https://undocumentedmatlab.com/articles/matlab-toolstrip-part-1#comment-469699</link>

		<dc:creator><![CDATA[Gang YAO]]></dc:creator>
		<pubDate>Sat, 23 Mar 2019 10:19:23 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=7952#comment-469699</guid>

					<description><![CDATA[showcaseToolGroup.m is gone in R2019a...]]></description>
			<content:encoded><![CDATA[<p>showcaseToolGroup.m is gone in R2019a&#8230;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Yair Altman		</title>
		<link>https://undocumentedmatlab.com/articles/matlab-toolstrip-part-1#comment-464371</link>

		<dc:creator><![CDATA[Yair Altman]]></dc:creator>
		<pubDate>Tue, 26 Feb 2019 14:45:33 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=7952#comment-464371</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://undocumentedmatlab.com/articles/matlab-toolstrip-part-1#comment-464364&quot;&gt;Brett&lt;/a&gt;.

yes - I explained this here: http://undocumentedmatlab.com/blog/matlab-toolstrip-part-5-icons]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://undocumentedmatlab.com/articles/matlab-toolstrip-part-1#comment-464364">Brett</a>.</p>
<p>yes &#8211; I explained this here: <a href="http://undocumentedmatlab.com/blog/matlab-toolstrip-part-5-icons" rel="ugc">http://undocumentedmatlab.com/blog/matlab-toolstrip-part-5-icons</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Brett		</title>
		<link>https://undocumentedmatlab.com/articles/matlab-toolstrip-part-1#comment-464364</link>

		<dc:creator><![CDATA[Brett]]></dc:creator>
		<pubDate>Tue, 26 Feb 2019 14:29:57 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=7952#comment-464364</guid>

					<description><![CDATA[Yair,
Thanks for sharing so much information on the toolstrip. This is really helpful.
Do you know if it&#039;s possible to change the icon on the ToolGroup object? I see the class has a setIcon() method, but I haven&#039;t been able to make it work.
Thanks,
Brett]]></description>
			<content:encoded><![CDATA[<p>Yair,<br />
Thanks for sharing so much information on the toolstrip. This is really helpful.<br />
Do you know if it&#8217;s possible to change the icon on the ToolGroup object? I see the class has a setIcon() method, but I haven&#8217;t been able to make it work.<br />
Thanks,<br />
Brett</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ramiro Massol		</title>
		<link>https://undocumentedmatlab.com/articles/matlab-toolstrip-part-1#comment-452018</link>

		<dc:creator><![CDATA[Ramiro Massol]]></dc:creator>
		<pubDate>Fri, 16 Nov 2018 19:32:03 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=7952#comment-452018</guid>

					<description><![CDATA[hi Yair, 
it&#039;s been a long time that i don&#039;t write to you, too much work and not enough time to put my hands on Matlab. I&#039;m very glad that you are taking a loot at the toolstrip. When are you posting part 2 of this series?
best regards, 
Ramiro]]></description>
			<content:encoded><![CDATA[<p>hi Yair,<br />
it&#8217;s been a long time that i don&#8217;t write to you, too much work and not enough time to put my hands on Matlab. I&#8217;m very glad that you are taking a loot at the toolstrip. When are you posting part 2 of this series?<br />
best regards,<br />
Ramiro</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Paul Andrews		</title>
		<link>https://undocumentedmatlab.com/articles/matlab-toolstrip-part-1#comment-442457</link>

		<dc:creator><![CDATA[Paul Andrews]]></dc:creator>
		<pubDate>Fri, 21 Sep 2018 19:16:37 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=7952#comment-442457</guid>

					<description><![CDATA[Yair,

This post is great.  Thanks you for sharing this.  I’ve been interested in building application with the toolstrip for quite a while, and I am really happy to see that it is possible.  😉
Now, I tried compiling the showcaseMPCDesigner to see if the toolstrip would work in a compile application.
I was able to compile it, and the toolstrip appears to work well.  However, the figures will not dock when compiled.  Do you know if there is a way around this?
The work around discussed in your http://undocumentedmatlab.com/blog/docking-figures-in-compiled-applications#comment-442454 post don’t seem to work in the newer releases.

Thank you in advance,

Paul]]></description>
			<content:encoded><![CDATA[<p>Yair,</p>
<p>This post is great.  Thanks you for sharing this.  I’ve been interested in building application with the toolstrip for quite a while, and I am really happy to see that it is possible.  😉<br />
Now, I tried compiling the showcaseMPCDesigner to see if the toolstrip would work in a compile application.<br />
I was able to compile it, and the toolstrip appears to work well.  However, the figures will not dock when compiled.  Do you know if there is a way around this?<br />
The work around discussed in your <a href="http://undocumentedmatlab.com/blog/docking-figures-in-compiled-applications#comment-442454" rel="ugc">http://undocumentedmatlab.com/blog/docking-figures-in-compiled-applications#comment-442454</a> post don’t seem to work in the newer releases.</p>
<p>Thank you in advance,</p>
<p>Paul</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
