Advanced Forum Search Results
-
Silverlight 3, Visual Studio 2008.
Are you testing ComboBoxItem or ComboBox?
-
Thank you for your reply Min-Hong Tang, the loaded event does not fire even if I select one of the items.
-
This blog says loaded is not guaranteed to occur. Is that the case for ComboboxItems?
-
I think it would be helpful to have at least a few Silverlight 3 samples showing page navigation, file upload/download, full CRUD database operations, themeing, etc. I participated in a survey that came up in the visual studio start page about a week ago that asked for input on how to restructure msdn. I wrote that having more sample ...
-
I load data in the navigate event. The data loads fine. I want to trim the field I use as display text. I could write an IValueConverter but I want to understand the event model.
Thanks for your reply.
-
Here is the XAML:
<ComboBox x:Name="cbArticles" Grid.Row="0" Grid.Column="1" SelectionChanged="cbArticles_SelectionChanged" Loaded="cbArticles_Loaded" DisplayMemberPath="Title" >
<ComboBoxItem Content="{Binding ArticleID}" ...
-
I first posted this problem here. I thought it was resolved but I still cant get it to work.
In the code below the combobox named cbApproved works fine but combobox cbArticles does not fire the SelectionChanged event and does not close when an item is selected from the dropdown list. If I randomly click items in the dropdown twenty ...
-
This page seems to indicate that with the correct plug-in, wpf applications can be run from the browser. If that is correct, what is the point in using Silverlight?
The Windows Presentation Foundation
(WPF) Plug-in for Firefox and the .NET Framework Assistant enable XAML
browser applications (XBAPs), loose ...
-
Thank you Amanda. I would have never figured this out.
There are many things I love about Silverlight. This is not one of them.
I hope you folks find an easier way to do this in version 4.
-
Thank you for your reply. I tried binding to ActualWidth but I get an exception. Is the following what you meant?
<data:DataGridTemplateColumn Width="{Binding ElementName=dg, Path=ActualWidth}">