Advanced Forum Search Results
-
Hi,
I posted on this topic here - may be of some use:
http://weblogs.asp.net/naughton/archive/2009/08/01/silverlight-3-dataform-control-mapping-add-extensibility.aspx
Thanks,
Martin
-
Hi,
I posted on this topic here - may be of some use:
http://weblogs.asp.net/naughton/archive/2009/08/01/silverlight-3-dataform-control-mapping-add-extensibility.aspx
Thanks,
Martin
-
Hi Maud,Excellent - that works as desired.Essentially, my code now looks like this: tv1.ItemsSource = list;
Dispatcher.BeginInvoke(delegate
{
SelectRootTreeViewItem();
});Where SelectRootTreeViewItem does all the ContainerFromItem stuff.Martin
-
Hi,
The requirement: Having refreshed ItemsSource, I want the root node in the TreeView to be selected programmatically.
Do I need to create a derived TreeView to do that?
Thanks,
Martin
-
Hi Stefan,
Can you try this slightly different UI initialisation:public Main()
{
InitializeComponent();
ObservableCollection<TestClass> testClassItems = new ObservableCollection<TestClass>();
_DataForm.ItemsSource = testClassItems;
}
There should then be +/- buttons in the top button bar.
Try selecting "+", followed ...
-
Hi,
I see the excellent TreeViewExtensions are included in the July 2009 Silverlight Toolkit 3.
As a test, I tried to select programmatically the root item in the TreeView immediately after setting ItemsSource on a standard, non-derived TreeView.
It appears that several of the TreeViewExtensions methods can not be called with the expected ...
-
This link provides some useful information and troubleshooting tips:
http://www.eggheadcafe.com/conversation.aspx?messageid=33574171&threadid=33553819
-
Hi,
Upon opening an existing SL2 Solution in VS2008 SP1 with the SL3 RTW Tools installed, I was prompted to upgrade the project to SL3 format.
The upgrade proceeds to a conclusion, with apparent success. However, the process seems to change/update any existing Service References, with the result that the generated Reference.cs ...
-
Hi stevenjamesfrank65,
Which type of ASP.NET project is hosting the WCF Service (Web Site or Web Application)?
Just a guess: The exception seems to imply that it is a Web Site, since a code-generated assembly (with generated name) seems to be missing.
If it is a Web Site, is there a way to try hosting the WCF Service in a Web Application, which ...
-
Hi Dave,
I have written a custom implementation, which has received no rigorous testing - so, use at your own risk...
This class gives you a TimePicker.
Note: You will need to ensure that your XAML makes reference to your chosen .NET namespace for this class (the code below uses ...