Advanced Forum Search Results
-
We recently wrote a new version of our Employee Services application using Silverlight and plan on using RIA (currently WCF). There is a rather large component of Employee Services that we were hoping to reuse in our legacy Windows Form client, so as to try and share some code between the two we came with a wacky of idea of porting/multi-targeting ...
-
Awesome... thanks for the update.
-
By removing the readonly property do you mean making the private setter public? Are there any other issues that would arise?
-
I believe not having the SelectedItem bindable like most other ItemsSource controls is problematic for a few reasons.
a) The Text property is buggy for one. Your converter sometimes receives requests asynchronsly via TextUpdate and can update the wrong object. This is reproducible by setting the DataContext = null, then the DataContext = Person ...
-
I appreciate your response but I am not running code in my property accessors. Below is an exact copy of the dependency property:
public static readonly DependencyProperty MinValueProperty =
DependencyProperty.Register("MinValue", typeof (double), typeof (RangeSlider), new PropertyMetadata(
...
-
I was implementing my own multi-track ranged slider control (derived from control). And I was exposing several of my own custom dependency properties for data binding. I found that when trying to data bind to these properties the initial value was bound but the changes did not propagate (Yes I used OneWay, TwoWay.. etc). It seems that I needed to ...
-
I couldn't agree more. I created a drag and drop extension, this is not a UI element but more of a behavior (ala Nikhil Kothari), I can dynamically attach this behavior to different UI elements so I don't have to write the same drag code everywhere. When dragging something around I need to prevent event bubbling so that UI element to which ...
-
This has now been fixed in RC0..
Great work and thank you.
-
I have just posted on our company web blog http://worksightblog.com some code and short article that implements a Silverlight client side WCF proxy. It generates this proxy at runtime using the reflection emit APIs and makes it a little easier IMO to call your own services providing you follow some simple guidelines outlined in the blog. It ...
-
Just posted a ComboBox silverlight control on our company blog. WorkSightBlog.com, Unlike some of the ComboBox controls we have seen, this one displays its list in a popup control and supports data templating, styles, auto complete, auto width... Check it out, its free and might prove useful as a starting point.
Thanks,
Sandy Place