<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.silverlight.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Silverlight Controls and Silverlight Toolkit</title><link>http://forums.silverlight.net/forums/35.aspx</link><description>Discussions around using and developing Silverlight controls and the Silverlight Toolkit</description><dc:language>en</dc:language><generator>CommunityServer 2007 (Build: 20416.853)</generator><item><title>Re: How can i implement the Button "down" style always?</title><link>http://forums.silverlight.net/forums/thread/105489.aspx</link><pubDate>Thu, 09 Oct 2008 14:03:18 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:105489</guid><dc:creator>sladapter</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/105489.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=35&amp;PostID=105489</wfw:commentRss><description>&lt;p&gt;You can use ToggleButton and define your own Checked state in the Template(if you do not want use the default template). With ToggleButton, one click should change it to checked state, 2nd click should made it back to normal. If you want it to stay at checked state, just set Checked=true.&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Re: How can i implement the Button "down" style always?</title><link>http://forums.silverlight.net/forums/thread/105371.aspx</link><pubDate>Thu, 09 Oct 2008 10:39:38 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:105371</guid><dc:creator>surbhiydv</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/105371.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=35&amp;PostID=105371</wfw:commentRss><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;To set the button style in pressed state always, just copy the vsm style storyboard for pressed visual state and paste it as it is in vsm style storyboard for normal visual state&lt;/p&gt;
&lt;p&gt;hope this will help you&lt;/p&gt;
&lt;p&gt;(Please &amp;#39;Mark as Answer&amp;#39;..........if it helps you)&lt;/p&gt;</description></item><item><title>Re: How can i implement the Button "down" style always?</title><link>http://forums.silverlight.net/forums/thread/105255.aspx</link><pubDate>Thu, 09 Oct 2008 07:36:06 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:105255</guid><dc:creator>Amanda Wang - MSFT</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/105255.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=35&amp;PostID=105255</wfw:commentRss><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Try to refer the below code:&lt;/p&gt;
&lt;p&gt;&amp;lt;Button x:Name=&amp;quot;btn&amp;quot;&amp;nbsp; Content=&amp;quot;button&amp;quot;&amp;nbsp; &amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Button.Template&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;ControlTemplate&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Grid x:Name=&amp;quot;RootElement&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Rectangle x:Name=&amp;quot;BodyElement&amp;quot; Width=&amp;quot;200&amp;quot; Height=&amp;quot;100&amp;quot; Fill=&amp;quot;Lavender&amp;quot; Stroke=&amp;quot;Purple&amp;quot;&amp;nbsp; /&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;TextBlock Text=&amp;quot;Click Me&amp;quot; HorizontalAlignment=&amp;quot;Center&amp;quot; VerticalAlignment=&amp;quot;Center&amp;quot; /&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Grid&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/ControlTemplate&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Button.Template&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Button&amp;gt;&lt;/p&gt;</description></item><item><title>Re: How can i implement the Button "down" style always?</title><link>http://forums.silverlight.net/forums/thread/104023.aspx</link><pubDate>Tue, 07 Oct 2008 08:23:32 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:104023</guid><dc:creator>murtaza.dharwala</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/104023.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=35&amp;PostID=104023</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;YOu can modify the buttons Content Template to a style which gives some thing to windows Flat style Button.&lt;br /&gt;&lt;/p&gt;</description></item><item><title>How can i implement the Button "down" style always?</title><link>http://forums.silverlight.net/forums/thread/103893.aspx</link><pubDate>Tue, 07 Oct 2008 05:15:18 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:103893</guid><dc:creator>spiderman110</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/103893.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=35&amp;PostID=103893</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;Hi, all&lt;/p&gt;&lt;p&gt;like the winform&amp;#39;s button FlatStyle property.&lt;/p&gt;&lt;p&gt;I want to set the button always down, like&amp;nbsp;&lt;/p&gt;&lt;p&gt;Button.FlatStyle = FlatStyle.Flat; &lt;/p&gt;&lt;p&gt;How can i implement it? &lt;br /&gt;&lt;/p&gt;</description></item></channel></rss>