Advanced Forum Search Results
-
Hi,
is binding to an index now supported in beta 2?
My problem is that i get an array of objects from a webservice and i have to create a column for each item. These column must have a data template that bind its child controls to properties of the objects.
Greets
Sebastian Dusch
-
Hi,
i have a very similar problem. It appears that the Foreground Property of the ContentPresenter can't be animated. Did you find a solution?<Style x:Key="ButtonIconDeleteStyle" TargetType="Button">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate ...
-
Try the following:
<my:DataGrid x:Name="listControl" AutoGenerateColumns="False">
<my:DataGrid.Columns >
<my:DataGridTemplateColumn Header="CabhgxcfllID" >
<my:DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<StackPanel>
<TextBlock Text="{Binding Text}" ...
-
Hi,
I'm using a webserice in silverlight. When I call the webservice method i always provide a userState object. In .net 3.0 it was possible to cancel the webservice call by calling the CancelAsync method with the userState. But this method is missing in Silverlight 2.0.
Is there any other way to cancel a webservice call? The callback ...
-
Hi,
that did it, thank you!!
Greets
Sebastian Dusch
-
Hi,
i want to migrate a XBAP project to a sivlerlight app. But i don't know how to create a DataTemplate in code because the class FrameworkElementFactory is missing.
I need to create the tempale in code because i'm binding a datagrid to a webservice and i don't know excactly the data returned.
Anyone knows how to create a ...
-
Hi,
thank you very much. ;)
Greets
Sebastian
-
Hi,
I have the same problem here. I try to add a grid thats part of the UserControl.Resources collection to another grid.
tabGrid.Children.Add(this.Resources["contentOne"] as Grid);
When I step trought I can see that the parent of the resource is null, so it should not be the problem mentioned above.
Anyone solved ...
-
Hi,
you have to add a reference to the System.Xml.Linq.dll (if you are using the SL 2 Beta 1)
Greets
Sebastian Dusch
-
Hi,
yes you are right. That's my workaround. But why use the this.Items[0].FindName thing when there is a variable mainPanel.
If you create an application and place a textbox in the xaml file and set the x:Name attribute to a value then normally you can use the textbox directly in code. why not in this case.
I hope you understand what I ...