Workaround for some WPF features that are missing in Silverlight - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T08:11:25Z http://stackoverflow.com/feeds/question/554570 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/554570/workaround-for-some-wpf-features-that-are-missing-in-silverlight 4 Workaround for some WPF features that are missing in Silverlight Phillip Ngan 2009-02-16T21:11:37Z 2009-02-17T19:01:33Z <p>I’m porting a WPF app to silverlight 2, and have come across several WPF features which are presently missing from SL. Could anyone help me with equivalents or suggest workarounds.</p> <ol> <li><p>I want to handle clicks and double clicks on a textbox embedded in a list box. The WPF implementation uses PreviewMouseLeftButtonDown/Up on a listbox control. How can this be done in silverlight, it seems that PreviewMouseLeftButtonDown/Up are missing in silverlight.</p></li> <li><p>I want to handle button presses (F2/Delete) on a textbox embedded in a list box. The WPF implementation uses PreviewKeyDown on a textbox control which embedded as an item in a listbox. It seems that PreviewKeyDown is missing in silverlight. The KeyDown event handler does not seem to get invoked.</p></li> <li><p>I want to change some appearance properties of a textbox depending on the value of some custom attached properties. The WPF implementation uses a DataTrigger to do this. How can this be done in silverlight. It seems that DataTriggers are missing in silverlight.</p></li> <li><p>I want to change the width of a text box depending on the Actual Width of the listbox in which the text box is contained. The WPF implementation uses RelativeSource binding. What is the silverlight equivalent, or workaround for this.</p></li> </ol> http://stackoverflow.com/questions/554570/workaround-for-some-wpf-features-that-are-missing-in-silverlight/554629#554629 0 Answer by BenMaddox for Workaround for some WPF features that are missing in Silverlight BenMaddox 2009-02-16T21:26:44Z 2009-02-16T21:26:44Z <p>I'm more familiar with Silverlight than the full WPF. Please considier my responses accordingly.</p> <p>For number 2. For many keys, I check on KeyUp and KeyDown. I use KeyDown while trying to watch the entire time that the key is held down and KeyUp when it was used just once. You should know this was for a game without an individual text box.</p> http://stackoverflow.com/questions/554570/workaround-for-some-wpf-features-that-are-missing-in-silverlight/554634#554634 0 Answer by Jeff Yates for Workaround for some WPF features that are missing in Silverlight Jeff Yates 2009-02-16T21:28:05Z 2009-02-16T21:33:29Z <p>For item 4, you can bind both the listbox width and the textbox width to a static resource's property so that it acts as a router for the binding. You could also use a <a href="http://msdn.microsoft.com/en-us/library/system.windows.data.ivalueconverter(VS.95).aspx" rel="nofollow">value converter</a> that you initialize with a reference to the listbox, then use the converter for your textbox width.</p> <p>For item 3, you could use a similar approach.</p> http://stackoverflow.com/questions/554570/workaround-for-some-wpf-features-that-are-missing-in-silverlight/555127#555127 0 Answer by KeithMahoney for Workaround for some WPF features that are missing in Silverlight KeithMahoney 2009-02-17T00:16:54Z 2009-02-17T19:01:33Z <p>For item 1 and 2, the best way to get access to these input events is to create a custom TextBox deriving from the built in TextBox. Then you can override the OnKeyDown and OnMouseLeftButton down. From there you can either call the necessary code, or fire a new event. e.g.:</p> <pre><code>public class MyTextBox : TextBox { public event MouseButtonEventHandler MySpecialMouseLeftButtonDown; protected override void OnMouseLeftButtonDown(MouseButtonEventArgs e) { if (MySpecialMouseLeftButtonDown != null) { MySpecialMouseLeftButtonDown(this, e); } base.OnMouseLeftButtonDown(e); } } </code></pre> <p>Similarly with OnKeyDown.</p>