<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: RibbonSplitButton Synchronized With Current Item and Static text? in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/ribbonsplitbutton-synchronized-with-current-item-and-static-text/m-p/5815607#M38724</link>
    <description>Thank you, your answer worked here! Thank you so much!&lt;BR /&gt;&lt;BR /&gt;I think that this property "SynchronizeOption" should be specified in the documentation of autodesk, on Managed Class Reference Guide.</description>
    <pubDate>Mon, 14 Sep 2015 13:05:32 GMT</pubDate>
    <dc:creator>andgas.lordone</dc:creator>
    <dc:date>2015-09-14T13:05:32Z</dc:date>
    <item>
      <title>RibbonSplitButton Synchronized With Current Item and Static text?</title>
      <link>https://forums.autodesk.com/t5/net-forum/ribbonsplitbutton-synchronized-with-current-item-and-static-text/m-p/5809555#M38722</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;I'm a little problem with the RibbonSplitButton.&lt;BR /&gt;I wanted the current button contains the image and the action of current&amp;nbsp;item, but the text I want it to be static.&lt;BR /&gt;The RibbonSplitButton contains a property called "IsSynchronizedWithCurrentItem" that does this, but it takes all information of current item.&lt;BR /&gt;I want behavior equal to the circle of ribbon autocad, where the text "circle" is static, as shown in the image below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://forums.autodesk.com/t5/image/serverpage/image-id/187863iAE10A480F41AE4E8/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" alt="RibbonSplitButton.jpg" title="RibbonSplitButton.jpg" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below a generic code of how I did:&lt;/P&gt;&lt;PRE&gt;RibbonSplitButton panSplitButton = new RibbonSplitButton();
panSplitButton.Text = "Circle";
panSplitButton.ShowText = true;
panSplitButton.ShowImage = true;
panSplitButton.IsSplit = true;
panSplitButton.Size = RibbonItemSize.Large;
panSplitButton.IsSynchronizedWithCurrentItem = true;

RibbonButton panButton1 = new RibbonButton();
panButton1.Text = "Center, Radius";
panButton1.ShowText = true;
panButton1.ShowImage = true;
panButton1.Image = Images.getBitmap(Properties.Resources.Small);
panButton1.LargeImage = Images.getBitmap(Properties.Resources.large);
panButton1.Size = RibbonItemSize.Large;
panButton1.Orientation = System.Windows.Controls.Orientation.Vertical;
panButton1.CommandHandler = new RibbonCommandHandler();

RibbonButton panButton2 = new RibbonButton();
panButton2.Text = "Center, Diameter";
panButton2.ShowText = true;
panButton2.ShowImage = true;
panButton2.Image = Images.getBitmap(Properties.Resources.Small);
panButton2.LargeImage = Images.getBitmap(Properties.Resources.large);
panButton2.Size = RibbonItemSize.Large;
panButton2.Orientation = System.Windows.Controls.Orientation.Vertical;
panButton2.CommandHandler = new RibbonCommandHandler();

panSplitButton.Items.Add(panButton1);
panSplitButton.Items.Add(panButton2);&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I keep the static text "circle" in the "IsSynchronizedWithCurrentItem" property as true?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Sep 2015 18:00:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/ribbonsplitbutton-synchronized-with-current-item-and-static-text/m-p/5809555#M38722</guid>
      <dc:creator>andgas.lordone</dc:creator>
      <dc:date>2015-09-09T18:00:49Z</dc:date>
    </item>
    <item>
      <title>Re: RibbonSplitButton Synchronized With Current Item and Static text?</title>
      <link>https://forums.autodesk.com/t5/net-forum/ribbonsplitbutton-synchronized-with-current-item-and-static-text/m-p/5812059#M38723</link>
      <description>&lt;P&gt;Welcome to the Forums!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Use the SynchronizeOption property:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;panSplitButton.SynchronizeOption = RibbonListButton.RibbonListButtonSynchronizeOption.Image;&lt;/PRE&gt;</description>
      <pubDate>Fri, 11 Sep 2015 01:38:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/ribbonsplitbutton-synchronized-with-current-item-and-static-text/m-p/5812059#M38723</guid>
      <dc:creator>Jeff_M</dc:creator>
      <dc:date>2015-09-11T01:38:15Z</dc:date>
    </item>
    <item>
      <title>Re: RibbonSplitButton Synchronized With Current Item and Static text?</title>
      <link>https://forums.autodesk.com/t5/net-forum/ribbonsplitbutton-synchronized-with-current-item-and-static-text/m-p/5815607#M38724</link>
      <description>Thank you, your answer worked here! Thank you so much!&lt;BR /&gt;&lt;BR /&gt;I think that this property "SynchronizeOption" should be specified in the documentation of autodesk, on Managed Class Reference Guide.</description>
      <pubDate>Mon, 14 Sep 2015 13:05:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/ribbonsplitbutton-synchronized-with-current-item-and-static-text/m-p/5815607#M38724</guid>
      <dc:creator>andgas.lordone</dc:creator>
      <dc:date>2015-09-14T13:05:32Z</dc:date>
    </item>
  </channel>
</rss>

