Advanced Forum Search Results
-
Thanks Amanda,
My machine has installed from Silverlight beta 2 to RC0 then RTW. Each time I install a new version, I do uninstalled the old versions.
I'll have another test of this code on RTW when I'm back home.
Thank you
-
Does anybody know about this issue?
-
Hello, I have a ComboBox with it's ItemsSource set to a string array like this:
comboBox1.ItemsSource = new string[] { "", "Item 1", "Item 2" };
in this case, the first item will display very short. so I try to customize it:
<ComboBox>
<ComboBox.ItemTemplate>
...
-
I suggest you to use Fiddler or some other HTTP watching tool to see the exact WCF error messages. After that you can easily tell if the problem is related to clientpolicy.xml settings.
-
great :)
-
Isil,
I wrote a little sample, hope it helps.
Page.xaml:
-----------------
<UserControl x:Class="SilverlightApplication10.Page"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...
-
Thanks very much, coughlinj,
After studying the code of ComboBox of RC0 carefully, Finally I know how to do this.
The key point here is to add a transparent Canvas inside the Popup but renders in the size of the whole Siverlight plugin, then capture MouseLeftBttonDown event of this Canvas to get the notification.
Now I have ...
-
I've tried this but doesn't work :(
thanks anyway for your advice.
Can anyone else help me ? I'm getting crazy on this problem.
-
Hello George, thanks for you reply.
But what I need to do is to close the Popup by clicking on other parts of the UI, other than close it when the MouseLeave event triggers. If you look into the situations like ComboBox implements, you'll see there are differences between them.
Regards,
Neil Chen
-
For ComboBox in RC0 doesn't support editing, I'm creating my simple custom control for editing use. I used a Popup to show list items when the drop down arrow is clicked. Now I need to close the Popup when user clicks on blank areas of the UI, however, I don't know how to achieve this. For the LostFocus event will never fire ...