active questions tagged silverlight - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T18:50:50Zhttp://stackoverflow.com/feeds/tag/silverlighthttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1875929/anyway-to-start-stop-resume-pause-a-storyboard-in-pure-xaml-in-silverlight-for-a0Anyway to start/stop/resume/pause a Storyboard in pure XAML in Silverlight, for any event?amazedsaint2009-12-09T18:40:42Z2009-12-09T18:40:42Z
<p>Any way in Silverlight to write pure XAML code for controlling story boards, by responding to any given event for a given control? For eg, when the user move the mouse over a panel, I might need to start the storyboard, and pause it when he moves the mouse out.</p>
http://stackoverflow.com/questions/1875040/itemcontainerstyle-in-custom-control-derived-from-listbox0ItemContainerStyle in Custom Control Derived From ListBoxbeaudetious2009-12-09T16:24:35Z2009-12-09T18:28:22Z
<p>Please bear with me Silverlight Designer Gurus, this is compicated (to me). </p>
<p>I'm creating a custom control which derives form the Silverlight 3.0 ListBox. In an effort not to show tons of code (initially), let me describe the setup. </p>
<p>I have a class library containing a class for my control logic. Then I have a Themes/generic.xaml that holds the styling details. In generic.xaml, I have a style that defines the default layout and look for the ListBox where I'm setting a values for the Template, ItemsPanel and ItemTemplate. </p>
<p>In my test app, I add my control on to MainPage.xaml and run it and it works great. I dynamically bind data to my control and that works fine.</p>
<p>Now I want to set the ItemContainerStyle for my derived control. If I create a style in the MainPage.xaml file and set the ItemContainerStyle property to that control as in:</p>
<pre><code><dti:myControl x:Name="MyControl1" ItemContainerStyle="{StaticResource MyListBoxItem}"
Height="500"
Width="200"
Margin="10"
Background="AliceBlue"
/>
</code></pre>
<p>It works as expected.</p>
<p>However, I'd like to do this in the class library or, more specifically, in generic.xaml. I tried to this Setter to my current Style:</p>
<pre><code><Setter Property="ItemContainerStyle">
<Setter.Value>
<ControlTemplate>
<Grid Background="Red" Margin="3">
<ContentPresenter x:Name="contentPresenter"
ContentTemplate="{TemplateBinding ContentTemplate}"
HorizontalAlignment="Stretch" Margin="3"/>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</code></pre>
<p>And it fails miserably with: </p>
<p>"System.ArgumentException: 'System.Windows.Controls.ControlTemplate' is not a valid value for property 'ItemContainerStyle'."</p>
<p><strong>Note:</strong> This is not my actual style I'd like to use for ItemContainerStyle. I'm actually looking to plug in some VSM here for the various selected/unselected states of the a ListBoxItem (for a dynamically bound control).</p>
<p>So, to the question is how do I apply the ItemContainterStyle to my custom control when it's defined using generic.xaml? I do not want that property set when I actually use the control later on.</p>
<p>Thanks,</p>
<p>Beaudetious</p>
http://stackoverflow.com/questions/1380925/programmatically-access-a-control-from-a-datatemplate0Programmatically access a control from a DataTemplateJames Cadd2009-09-04T18:48:27Z2009-12-09T17:33:36Z
<p>What's a good way to get at the controls in a DataTemplate? I've used the technique of handing the Loaded event on the control of interest as well as using VisualTreeHelper to walk the visual tree and neither of those is very elegant. What's a good way to access DataTemplate controls?</p>
<p>In one example, I need to add a binding whos ConverterParameter isn't know at design time, and since binding to ConverterParameters isn't supported I need to create the binding in code. Ideally I'd like to be able to do this somewhere other than the Loaded event hander for the control in the datatemplate.</p>
<p>In fact, in this scenario handling events doesn't work at all and causes the an OutOfMemoryException. Here's my attempt:</p>
<p>generic.xaml:</p>
<pre><code><ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:SilverlightTest">
<Style TargetType="local:TemplatedControl">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="local:TemplatedControl">
<ListBox ItemsSource="{TemplateBinding ListBoxItemsSource}">
<ListBox.ItemTemplate>
<DataTemplate>
<TextBlock x:Name="SomeTextBlock"
Loaded="SomeTextBlock_Loaded"/>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>
</code></pre>
<p>templatedcontrol.cs:</p>
<pre><code>public class TemplatedControl : Control
{
public object ListBoxItemsSource
{
get { return (object)GetValue(ListBoxItemsSourceProperty); }
set { SetValue(ListBoxItemsSourceProperty, value); }
}
public static readonly DependencyProperty ListBoxItemsSourceProperty =
DependencyProperty.Register
("ListBoxItemsSource", typeof(object),
typeof(TemplatedControl), new PropertyMetadata(null));
public TemplatedControl()
{
this.DefaultStyleKey = typeof(TemplatedControl);
}
public void SomeTextBlock_Loaded(object sender, RoutedEventArgs ea)
{
}
}
</code></pre>
http://stackoverflow.com/questions/1874406/silverlight-enabled-wcf-service-port-suddenly-changed0Silverlight enabled WCF service port suddenly changedKlay2009-12-09T14:52:50Z2009-12-09T17:28:10Z
<p>I have a Silverlight web app solution with a Silverlight-enabled WCF service included. Everything has worked fine for the past 6 months or so. I can access data through the service with no problem.</p>
<p>I came into work today, opened up the solution, ran it again, and suddenly, there's a mismatch between the WCF service port and the port that Silverlight wants to use to access the service.</p>
<p>How and why would the port suddenly change?</p>
<p>How do you specify a port to use? I never specified a port in the past--it just worked. I can't find a port specification in the web.config or the service CS file.</p>
http://stackoverflow.com/questions/1874961/silverlight-3-changing-merged-dictionary-dynamically0Silverlight 3 - Changing Merged Dictionary DynamicallyJosimari Martarelli2009-12-09T16:12:43Z2009-12-09T16:39:19Z
<p><strong>Hello, how to go from:</strong></p>
<pre><code><Application
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="teste.App">
<Application.Resources>
<!-- Resources scoped at the Application level should be defined here. -->
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
**<ResourceDictionary Source="Green.xaml"/>**
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>
</code></pre>
<p><strong>To:</strong></p>
<pre><code><Application
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="teste.App">
<Application.Resources>
<!-- Resources scoped at the Application level should be defined here. -->
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
**<ResourceDictionary Source="Blue.xaml"/>**
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>
</code></pre>
<p><strong>Dynamically, when users choose the theme... Is it possible?
Thank you
Josi</strong></p>
http://stackoverflow.com/questions/1826606/silverlight-relating-two-datagrids1Silverlight Relating Two DatagridsMark Cooper2009-12-01T14:39:48Z2009-12-09T16:30:55Z
<p>Hi,</p>
<p><strong>My question: How do I bind the SelectedItem from a primary datagrid to the ItemsSource for a secondary datagrid?</strong></p>
<p>In detail:
I have two datagrids on my view. The first shows a collection of teams and the second shows as list of people in the selected team. </p>
<p>When I select a team from the grid I can see that the <em>SelectedTeam</em> property is getting updated correctly, but the People grid is not getting populated. </p>
<p>Note: I am not able to use nested grids, or the cool master-detail features provided in the SL data-grid.</p>
<p><strong>UPDATE:</strong> Replacing the parent datagrid with a ComboBox gives completely different results and works perfectly. <strong>Why would ComboBox.SelectedItem and DataGrid.SelectedItem behave so differently?</strong></p>
<p>Thanks,<br>
Mark</p>
<p><hr></p>
<p><strong>Simple Repro:</strong></p>
<p><strong>VIEW:</strong></p>
<pre><code><UserControl x:Class="NestedDataGrid.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
xmlns:data="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Data">
<StackPanel x:Name="LayoutRoot">
<TextBlock Text="Teams:" />
<data:DataGrid ItemsSource="{Binding Teams}"
SelectedItem="{Binding SelectedTeam, Mode=TwoWay}"
AutoGenerateColumns="False">
<data:DataGrid.Columns>
<data:DataGridTextColumn Header="Id" Binding="{Binding TeamId}" />
<data:DataGridTextColumn Header="Desc" Binding="{Binding TeamDesc}" />
</data:DataGrid.Columns>
</data:DataGrid>
<TextBlock Text="Peeps:" />
<data:DataGrid ItemsSource="{Binding SelectedTeam.People}"
AutoGenerateColumns="False">
<data:DataGrid.Columns>
<data:DataGridTextColumn Header="Id"
Binding="{Binding PersonId}" />
<data:DataGridTextColumn Header="Name"
Binding="{Binding Name}" />
</data:DataGrid.Columns>
</data:DataGrid>
</StackPanel>
</UserControl>
</code></pre>
<p><hr></p>
<p><strong>CODE_BEHIND:</strong></p>
<pre><code>using System.Windows.Controls;
namespace NestedDataGrid
{
public partial class MainPage : UserControl
{
public MainPage()
{
InitializeComponent();
this.LayoutRoot.DataContext = new ViewModel();
}
}
}
</code></pre>
<p><hr></p>
<p><strong>VIEWMODEL:</strong></p>
<pre><code>using System.Collections.ObjectModel;
namespace NestedDataGrid
{
public class ViewModel: ObjectBase
{
public ViewModel()
{
ObservableCollection<Person> RainbowPeeps = new ObservableCollection<Person>()
{
new Person(){ PersonId=1, Name="George"},
new Person(){ PersonId=2, Name="Zippy"},
new Person(){ PersonId=3, Name="Bungle"},
};
ObservableCollection<Person> Simpsons = new ObservableCollection<Person>()
{
new Person(){ PersonId=4, Name="Moe"},
new Person(){ PersonId=5, Name="Barney"},
new Person(){ PersonId=6, Name="Selma"},
};
ObservableCollection<Person> FamilyGuyKids = new ObservableCollection<Person>()
{
new Person(){ PersonId=7, Name="Stewie"},
new Person(){ PersonId=8, Name="Meg"},
new Person(){ PersonId=9, Name="Chris"},
};
Teams = new ObservableCollection<Team>()
{
new Team(){ TeamId=1, TeamDesc="Rainbow", People=RainbowPeeps},
new Team(){ TeamId=2, TeamDesc="Simpsons", People=Simpsons},
new Team(){ TeamId=3, TeamDesc="Family Guys", People=FamilyGuyKids },
};
}
private ObservableCollection<Team> _teams;
public ObservableCollection<Team> Teams
{
get { return _teams; }
set
{
SetValue(ref _teams, value, "Teams");
}
}
private Team _selectedTeam;
public Team SelectedTeam
{
get { return _selectedTeam; }
set
{
SetValue(ref _selectedTeam, value, "SelectedTeam");
}
}
}
}
</code></pre>
<p><hr></p>
<p><strong>ASSOCIATED CLASSES:</strong></p>
<pre><code>using System;
using System.ComponentModel;
namespace NestedDataGrid
{
public abstract class ObjectBase : Object, INotifyPropertyChanged
{
public ObjectBase()
{ }
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void _OnPropertyChanged(string propertyName)
{
PropertyChangedEventHandler pceh = PropertyChanged;
if (pceh != null)
{
pceh(this, new PropertyChangedEventArgs(propertyName));
}
}
protected virtual bool SetValue<T>(ref T target, T value, string propertyName)
{
if (Object.Equals(target, value))
{
return false;
}
target = value;
_OnPropertyChanged(propertyName);
return true;
}
}
public class Person: ObjectBase
{
private int _personId;
public int PersonId
{
get { return _personId; }
set
{
SetValue(ref _personId, value, "PersonId");
}
}
private string _name;
public string Name
{
get { return _name; }
set
{
SetValue(ref _name, value, "Name");
}
}
}
public class Team : ObjectBase
{
private int _teamId;
public int TeamId
{
get { return _teamId; }
set
{
SetValue(ref _teamId, value, "TeamId");
}
}
private string _teamDesc;
public string TeamDesc
{
get { return _teamDesc; }
set
{
SetValue(ref _teamDesc, value, "TeamDesc");
}
}
private ObservableCollection<Person> _people;
public ObservableCollection<Person> People
{
get { return _people; }
set
{
SetValue(ref _people, value, "People");
}
}
}
}
</code></pre>
<p><hr></p>
<p><strong>UPDATE</strong></p>
<p>Replacing the first datagrid with a combobox and eveything works OK. Why would DataGrid.SelectedItem and ComboBox.SelectedItem behave so differently?</p>
<pre><code><StackPanel x:Name="LayoutRoot">
<TextBlock Text="Teams:" />
<ComboBox SelectedItem="{Binding SelectedTeam, Mode=TwoWay}"
ItemsSource="{Binding Teams}"/>
<TextBlock Text="{Binding SelectedTeam}" />
<TextBlock Text="Peeps:" />
<data:DataGrid ItemsSource="{Binding SelectedTeam.People}" />
</StackPanel>
</code></pre>
http://stackoverflow.com/questions/1849287/how-to-modify-front-of-url-in-silverlight-navigation-app0How to modify front of URL in Silverlight Navigation app?Dov2009-12-04T19:56:13Z2009-12-09T16:30:54Z
<p>My Silverlight application, using the navigation framework, has very pretty endings to its URLs, due to use of the URI mapping it does. But the front end still looks nasty, like:</p>
<pre><code>http://server:port/SilverlightPage.aspx#/uri-mapped-portion
</code></pre>
<p>How can I get the "SilverlightPage.aspx#" portion to look nicer, preferably removing the ".aspx#"?</p>
http://stackoverflow.com/questions/1874908/sketchflow-datagrid-exception-being-thrown0Sketchflow + DataGrid Exception Being ThrownJames Alexander2009-12-09T16:06:01Z2009-12-09T16:06:01Z
<p>This is my first time using Sketchflow and I followed a video tutorial explaining how to use a DataGrid and a Sample Data Source within a SketchFlow project. Everything renders fine in Blend but when I attempt to run it within the SketchFlow player I get the following exception:</p>
<p>Message: Unhandled Error in Silverlight Application Exception has been thrown by the target of an invocation. at System.RuntimeTypeHandle.CreateInstance(RuntimeType type, Boolean publicOnly, Boolean noCheck, Boolean& canBeCached, RuntimeMethodHandle& ctor, Boolean& bNeedSecurityCheck)
at System.RuntimeType.CreateInstanceSlow(Boolean publicOnly, Boolean fillCache)
at System.RuntimeType.CreateInstanceImpl(Boolean publicOnly, Boolean skipVisibilityChecks, Boolean fillCache)
at System.RuntimeType.CreateInstanceImpl(Boolean publicOnly)
at System.Activator.CreateInstance(Type type, Boolean nonPublic)
at System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
at System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
at System.Reflection.Assembly.CreateInstance(String typeName, Boolean ignoreCase, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
at System.Reflection.Assembly.CreateInstance(String typeName)
at Microsoft.Expression.Prototyping.Workspace.PlayerWindow.InstantiateScreen(String screen, Boolean showImmediately)
at Microsoft.Expression.Prototyping.Workspace.PlayerWindow.TransitionScreens(String from, String to)
at Microsoft.Expression.Prototyping.Navigation.NavigationViewModel.NavigateToScreen(String name, Boolean record)
Line: 1
Char: 1
Code: 0
URI: <a href="http://localhost:31327/TestPage.html" rel="nofollow">http://localhost:31327/TestPage.html</a></p>
<p>Here's the xaml for the user control containing the Grid. I should not that if I remove the data grid, top-level grid binding and ResourceDictionary, the page works fine in the player:</p>
<pre><code><UserControl
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
xmlns:local="clr-namespace:Admin_PrototypeScreens" xmlns:ps="clr-namespace:Microsoft.Expression.Prototyping.SketchControls;assembly=Microsoft.Expression.Prototyping.SketchControls" xmlns:data="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Data"
x:Class="Admin_PrototypeScreens.Screen_1_1"
Width="980" Height="600">
<UserControl.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="ProjectDataSources.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</UserControl.Resources>
<Grid x:Name="LayoutRoot" Background="White" DataContext="{Binding Source={StaticResource RecentImportExports}}">
<local:Header Margin="0,0,0,0" VerticalAlignment="Top" d:IsPrototypingComposition="True"/>
<local:Navigation Margin="0,66,0,0" VerticalAlignment="Top" d:IsPrototypingComposition="True"/>
<TextBlock Height="32" HorizontalAlignment="Left" Margin="8,120,0,0" Style="{StaticResource SubtitleLeft-Sketch}" VerticalAlignment="Top" Width="312" Text="Home" TextWrapping="Wrap"/>
<ps:SketchRectangleSL Background="#FFE8E6E6" Margin="8,152,8,8" Style="{StaticResource Rectangle-Sketch}"/>
<TextBlock Height="24" HorizontalAlignment="Left" Margin="40,176,0,0" Style="{StaticResource TextBlock-Sketch}" VerticalAlignment="Top" Width="216" Text="Recent Imports/Exports" TextWrapping="Wrap"/>
<data:DataGrid Margin="40,216,420,200" AutoGenerateColumns="False" ItemsSource="{Binding ImportExportCollection, Mode=OneWay}">
<data:DataGrid.Columns>
<data:DataGridTextColumn Header="Repository" Binding="{Binding Repository}"/>
<data:DataGridTextColumn Header="Partner" Binding="{Binding Partner}"/>
<data:DataGridTextColumn Header="Type" Binding="{Binding Type}"/>
<data:DataGridTextColumn Header="Date" Binding="{Binding Date}"/>
<data:DataGridTextColumn Header="Rows" Binding="{Binding Rows}"/>
<data:DataGridTextColumn Header="Errors" Binding="{Binding Errors}"/>
</data:DataGrid.Columns>
</data:DataGrid>
</Grid>
</code></pre>
<p></p>
http://stackoverflow.com/questions/1874799/silverlight-client-identity-not-always-passed-to-server2Silverlight client identity not always passed to server?rwwilden2009-12-09T15:51:03Z2009-12-09T16:05:47Z
<p>I have a Silverlight client that has some problems talking to the server it originates from via a WCF <code>basicHttpBinding</code>. The service configuration is as follows:</p>
<pre><code><system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="silverlightBinding">
<security mode="TransportCredentialOnly">
<transport clientCredentialType="Windows" />
</security>
</binding>
</basicHttpBinding>
</bindings>
<services>
<service name="MyServices.ImportService">
<endpoint address="" binding="basicHttpBinding"
contract="MyServices.IImportService"
bindingConfiguration="silverlightBinding" />
</service>
</services>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true"/>
</system.serviceModel>
</code></pre>
<p>The server is an IIS6 web server that is configured to use integrated authentication. The application pool identity is a domain account.</p>
<p>Now some calls from the Silverlight client to the web server include the client identity (the domain user that accesses the client) and some do not! I have included a part of the IIS log to show this:</p>
<pre><code>2009-12-09 14:10:00 W3SVC1490499214 10.0.0.113 GET /ClientBin/MySLApp.xap - 80 BROWNIE\TestUser 10.0.0.216 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+5.1) 304 0 0
2009-12-09 14:12:33 W3SVC1490499214 10.0.0.113 POST /Services/ImportService.svc - 80 - 10.0.0.216 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+5.1) 401 2 2148074254
2009-12-09 14:12:33 W3SVC1490499214 10.0.0.113 POST /Services/ImportService.svc - 80 - 10.0.0.216 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+5.1) 401 2 2148074254
2009-12-09 14:12:33 W3SVC1490499214 10.0.0.113 POST /Services/ImportService.svc - 80 - 10.0.0.216 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+5.1) 401 1 0
2009-12-09 14:12:33 W3SVC1490499214 10.0.0.113 POST /Services/ImportService.svc - 80 BROWNIE\TestUser 10.0.0.216 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+5.1) 200 0 0
2009-12-09 14:12:33 W3SVC1490499214 10.0.0.113 POST /Services/ImportService.svc - 80 - 10.0.0.216 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+5.1) 401 1 0
2009-12-09 14:12:34 W3SVC1490499214 10.0.0.113 POST /Services/ImportService.svc - 80 BROWNIE\TestUser 10.0.0.216 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+5.1) 200 0 0
2009-12-09 14:12:34 W3SVC1490499214 10.0.0.113 POST /Services/ImportService.svc - 80 - 10.0.0.216 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+5.1) 401 1 0
2009-12-09 14:12:34 W3SVC1490499214 10.0.0.113 POST /Services/ImportService.svc - 80 BROWNIE\TestUser 10.0.0.216 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+5.1) 200 0 0
</code></pre>
<p>If you scroll a little to the right, you see that for some requests an identity is known (<code>BROWNIE\TestUser</code>). For most requests, however, this is not the case. It's as if the client 'randomly' chooses when to send an identity along.</p>
<p>Has anyone ever seen this behavior and found a solution?</p>
http://stackoverflow.com/questions/1873946/styling-my-listbox-in-xaml0Styling my listbox in xamlbomortensen2009-12-09T13:37:37Z2009-12-09T15:33:37Z
<p>Hi all xaml-geeks ;)</p>
<p>I've just been fooling around with a ListBox control that I want to style a certain way. For now it looks just like I want it to with rounded corners and no padding. However, the rounded corners seems to cause a problem with the items in the ListBox.</p>
<p>A screenshot so you can see what I mean:
<img src="http://www.bo-mortensen.dk/listbox.JPG" alt="alt text"></p>
<p>The thing is, that the first and the last item in the listbox needs to have it's corners rounded aswell. So the first item in the listbox needs to have it's upper left and right corners rounded while the bottom corners needs to be rectangular. </p>
<p>Is it possible in some way, to make three different styles and have the first, middle and last items use their own style? So i.e:</p>
<ul>
<li>First item uses style: ListBoxFirstItem</li>
<li>Middle items uses style: ListBoxMiddleItems</li>
<li>Last item uses style: ListBoxLastItem</li>
</ul>
<p>Also, as a side question, how am I able to style the selected item and mouse over? If i'd like to get rid of the blue rectangle that's standard.</p>
<p>Hope you understand my question(s), if not - just let me know and I'll see if I can elaborate :)</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/1869663/wcf-ria-service-deployment-issue1WCF RIA Service deployment issueDragan2009-12-08T20:35:49Z2009-12-09T15:29:17Z
<p>I have a very simple sample silverlight application. I added a domain service to it with an entity model that has one entity. The client app simply loads all rows in the entity at startup. When I run this on my development box, it works as expected. However, when I move it to our test server I get an exception saying that the method I am calling cannot be found (Load operation failed for query 'GetCTCStation'. The remote server returned an error. NotFound.). When I inspected the client/server communication more closely with Fiddler I found out that the request is going to <strong><a href="http://%5Bserver" rel="nofollow">http://%5Bserver</a> url]/ClientBin/SilverlightApplication7-Client-Web-CTCService.svc/binary</strong>.
I added the domain service to the root of the web project, so I don't understand why the client is looking for it in the ClientBin directory. It's obviously not there. What am I doing wrong here? I have never had any issues with July preview version of RIA.</p>
<p><hr></p>
<p>It is relative, but that is handled in the Generated_Code file automatically. And there is nothing in the webconfig to configure. I used default settings when creating a domain service. I tried explicitly setting the uri when instantiating the service and same exception occurred.</p>
http://stackoverflow.com/questions/1873986/visual-studio-08-will-not-allow-me-to-create-silverlight-project1Visual Studio 08 will not allow me to create Silverlight projectMike_G2009-12-09T13:43:06Z2009-12-09T14:09:03Z
<p>So I installed the Silverlight 3 SDK a while ago and VS worked fine. Yesterday I unisntalled the Silverlight 2 SDK. Then when I tried to create a Silverlight project I got an error stating</p>
<pre><code>You need to install the silverlight 2 sdk before creating a silverlight project
</code></pre>
<p>Why? Is this required? I unisntalled the Silverlight 3 SDK and reinstalled, same error occurs. I then uninstalled everything related to silverlight (Silverlight 3 SDK, tools, and VS 2008 SP1) and re-installed. Now when i go to select a new Silverlight project, there are no options for creating a project, library, etc.</p>
<p>How do i correct this?</p>
http://stackoverflow.com/questions/1871646/binding-values-not-showing-up-in-listbox-silverlight-31Binding values not showing up in ListBox (silverlight 3)Kodefoo2009-12-09T04:50:44Z2009-12-09T14:06:48Z
<p>I am loading values for a listbox from an xml file. What my problem is i can't get the bindings show the property values of the class that each item is assigned. When i set the Text this way:</p>
<pre><code><TextBlock Text="{Binding }" Style="{StaticResource TitleBlock}"></TextBlock>
</code></pre>
<p>The items show the toString value of the class, but if i use:</p>
<pre><code> <TextBlock Text="{Binding Title}" Style="{StaticResource TitleBlock}"></TextBlock>
</code></pre>
<p>I get blank space for each Item in the list box. I hope i have explained my problem well enough. Code posted below:</p>
<p><strong>MapList.xml</strong></p>
<pre><code><Maps>
<map>
<title>Backlot</title>
<id>mp_backlot</id>
<description>Daytime urban combat.</description>
<thumbnail>mapImages/map11.jpg</thumbnail>
</map>
<map>
<title>Bloc</title>
<id>mp_bloc</id>
<description>Snowy close quarters combat with some sniping available.</description>
<thumbnail>mapImages/map11.jpg</thumbnail>
</map>
<map>
<title>The Bog</title>
<id>mp_bog</id>
<description>Night time map great for any play style.</description>
<thumbnail>mapImages/map11.jpg</thumbnail>
</map>
</Maps>
</code></pre>
<p><strong>MainPage.xaml :</strong></p>
<pre><code> <UserControl
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" xmlns:controls="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls" x:Class="Cod4ServerTool.MainPage" Height="521" Width="928">
<Grid x:Name="LayoutRoot">
<Grid.RowDefinitions>
<RowDefinition Height="0"/>
<RowDefinition/>
</Grid.RowDefinitions>
<Grid.Background>
<ImageBrush Stretch="Uniform" ImageSource="ui_bg.jpg"/>
</Grid.Background>
<controls:TabControl Margin="0,8,0,0" Grid.Row="1">
<controls:TabControl.Background>
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
<GradientStop Color="White" Offset="0"/>
<GradientStop Color="#662A2C12" Offset="1"/>
</LinearGradientBrush>
</controls:TabControl.Background>
<controls:TabItem Header="TabItem" Foreground="Black">
<Grid>
<ListBox x:Name="MapsList_lb" Margin="8,8,177,8">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<Image Source="{Binding ThumbNail}" Style="{StaticResource ThumbNailPreview}"></Image>
<TextBlock Text="{Binding Title}" Style="{StaticResource TitleBlock}"></TextBlock>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
<ListBox.Background>
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
<GradientStop Color="#66F0F2F0" Offset="0.254"/>
<GradientStop Color="#CC828C82" Offset="1"/>
<GradientStop Color="#CCD5DED6"/>
</LinearGradientBrush>
</ListBox.Background>
</ListBox>
<ListBox Margin="0,8,8,8" HorizontalAlignment="Right" Width="160">
<ListBox.Background>
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
<GradientStop Color="#66F0F2F0" Offset="0.254"/>
<GradientStop Color="#CC828C82" Offset="1"/>
<GradientStop Color="#CCD5DED6"/>
</LinearGradientBrush>
</ListBox.Background>
</ListBox>
</Grid>
</controls:TabItem>
<controls:TabItem Header="TabItem">
<Grid/>
</controls:TabItem>
</controls:TabControl>
<Button Height="21" HorizontalAlignment="Right" Margin="0,8,8,0" VerticalAlignment="Top" Width="95" Content="Import Maps" Grid.Row="1" Click="Button_Click"/>
</Grid>
</UserControl>
</code></pre>
<p><strong>the .cs</strong></p>
<pre><code>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using System.Xml.Linq;
namespace Cod4ServerTool
{
public partial class MainPage : UserControl
{
public MainPage()
{
InitializeComponent();
}
private void Button_Click(object sender, RoutedEventArgs e)
{
DisplayMaps("MapList.xml");
}
private void DisplayMaps(string xmlContent)
{
XDocument xmlMaps = XDocument.Load(xmlContent);
var maps = from map in xmlMaps.Elements("Maps").Elements("map")
select new Map
{
Id = map.Element("id").Value,
Title = map.Element("title").Value,
Description = map.Element("description").Value,
ThumbNail = map.Element("thumbnail").Value,
};
MapsList_lb.SelectedIndex = -1;
MapsList_lb.ItemsSource = maps;
}
}
}
</code></pre>
<p><strong>Map.cs</strong></p>
<pre><code>using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cod4ServerTool
{
class Map
{
public string Title { get; set; }
public string Id { get; set; }
public string Description { get; set; }
public string ThumbNail { get; set; }
public override string ToString()
{
return Title;
}
}
}
</code></pre>
http://stackoverflow.com/questions/1873841/whats-the-best-way-to-resize-all-the-elements-in-the-silverlight-canvas-on-resize1Whats the best way to resize all the elements in the silverlight canvas on resize?Ramesh Vel2009-12-09T13:19:24Z2009-12-09T13:49:52Z
<p>Hi,</p>
<p>I just started learning SL. I have tried to resize all the elements inside the canvas on its resize. But i cant find the right way. </p>
<p>this is what i did</p>
<ol>
<li>Iterate throgh the all child elements in canvas </li>
<li>calaculate the scale X & Y based on the new size</li>
<li>And multiply the scale values with each elements size properties</li>
</ol>
<p>But in SL3.0 i dont find any size properties in UIelement to set the new size. below the sample code</p>
<pre><code> private void testCanvas_SizeChanged(object sender, SizeChangedEventArgs e)
{
var scaleX = e.NewSize.Width / e.PreviousSize.Width;
var scaleY = e.NewSize.Height / e.PreviousSize.Height;
for (int i = 0; i < testCanvas.Children.Count; i++)
{
UIElement ui = testCanvas.Children[i];
// but no ui.width or ui.height
}
}
</code></pre>
<p>Also i cant able to find an option to move each element to the new position relative to the size changed canvas... </p>
<p>can someone point me the right direction..</p>
<p>Cheers</p>
<p>RameshVel </p>
http://stackoverflow.com/questions/1873245/silverlight-map-tiler1Silverlight Map TilerAndrew2009-12-09T11:21:04Z2009-12-09T11:34:15Z
<p>Hi there! I just started learning Silverlight and onTop of that I have to create a map viewer that displays our map tiles. I have search EVERYWHERE online and cant find anything that helps me. All Im looking for is a way to Display the tiles and have it draggable so that it starts pulling off more Tiles from the server. I'd like to build it from scratch but im not sure where to begin. I've looked at the whole microsoft BING thing but that doesnt help as its too much of BINGS's own stuff. Going in circles looking everywhere else.</p>
http://stackoverflow.com/questions/1871238/how-can-i-obtain-a-sketch-or-hand-drawn-look-in-silverlight-for-various-controls1How can I obtain a sketch or hand-drawn look in Silverlight for various controls?Ryan Taylor2009-12-09T02:21:03Z2009-12-09T11:26:38Z
<p>I am looking to create a Silverlight application that employs a control style similar to what one might see when using <a href="http://www.balsamiq.com/products/mockups" rel="nofollow">Balsamiq Mockups</a> or <a href="http://www.microsoft.com/expression/products/SketchFlow%5FOverView.aspx" rel="nofollow">SketchFlow</a>. </p>
<p>I am not sure how this look is best achieved in Silverlight. My initial thought is that clever use of a pixel shader effect on the desired control might just do the trick, however, my searches for a similar solution have failed.</p>
<p>What might be the best approach for drawing controls with a hand-drawn look in Silverlight?</p>
<p>Can this be done with a custom pixel shader?</p>
http://stackoverflow.com/questions/1872191/full-screen-hides-html-controls-in-silverlight-application1Full Screen hides HTML controls in Silverlight ApplicationLaxmilal2009-12-09T07:26:41Z2009-12-09T11:11:45Z
<p>Hello All,</p>
<p>I tried to implement a full screen functionality in my application . Its working fine .But I added some HTML controls in my aspx file ,when i click onr fullscreen button it shows a fullscreen but not show a HTML controls( only shows a SilverlightHost UI) .</p>
<p>So how can I resolve it. (I have set windowless property true).</p>
<p>Thanks in advance,
Laxmilal</p>
http://stackoverflow.com/questions/1317704/microsoft-windows-drm-server-tips0Microsoft Windows DRM Server tipsIrena2009-08-23T03:40:28Z2009-12-09T11:00:03Z
<p>We are looking into solution which involves playing copyright protected video using Microsoft DRM Server and Silverlight player. the video will be played to registered users on the web using Silverlight player.</p>
<p>I've read all MSDN documentation on this subject and kind of get an idea how it is supposed to work.</p>
<p>However, I couldn't find information on pricing and installation of Microsoft Inidividuazation server. Hence, here are my questions for someone with experience in this area:</p>
<ol>
<li><p>How fast is it to setup a quick "proof of concept" solution involving windows DRM and Silverlight. Can we do it on our own or need Microsoft help?</p></li>
<li><p>What is the pricing for such solution in operations?</p></li>
</ol>
<p>thanks!!</p>
http://stackoverflow.com/questions/1873057/how-to-pass-dirty-values-only-from-client-side-data-transfer-object-to-server-sid0How to pass dirty values only from client side data transfer object to server side domain model codegoblin2009-12-09T10:44:28Z2009-12-09T10:44:28Z
<p><strong>Application Type:</strong>
3-Tier web application with RDBMS at backend</p>
<p><strong>Development Platform</strong></p>
<p>Client : Silverlight 3/ WPF
Services: WCF web services with Basic Http binding</p>
<p><strong>Problem Definition:</strong>
Trying to develop a application that has a client side business handling and data intensive objects being passed to client. Once the objects are viewed and edited in client screen they should be passed to services on server side for save. The issue being since that data is in sizable amount I dont want to pass the entire object back again to the services. E.g:- If I have a collection of 10 rows and 10 columns for each row and only 2 columns are updated. I should be able to pas only the data.</p>
<p><strong>Question:</strong>
Is this a good practise and if yes whats the best way to achieve </p>
<p><strong>Tried out solutions</strong>
I have tried two solutions
1: Have setters with event delegate that do change notification
2: Use custom data type</p>
http://stackoverflow.com/questions/1864567/wcf-ria-services-loading-data-and-binding0WCF RIA Services - loading data and bindingbomortensen2009-12-08T04:23:25Z2009-12-09T10:01:58Z
<p>Hi all,</p>
<p>I've just been toying around with the new WCF RIA Services Beta for Silverlight this evening. So far it looks nice, but I've come across a few barriers when trying to retrieve data and exposing it to the UI via binding.</p>
<p>First of all, how am I able to get a single integer or string value from my service? Say if I have this method on my domainservice:</p>
<p>public int CountEmployees()
{
return this.ObjectContext.Employees.Count();
}</p>
<p>How am I able to make a call to this and bind the result to, say, a TextBlock?</p>
<p>Also, is there any way to make a custom layout for binding data? I feel a little "limited" to ListBox, DataGrid and such. How is it possible to, i.e., make a Grid with a stackpanel inside and have some TextBlocks showing the bound data? If it's possible at all with WCF RIA Services :)</p>
<p>Thanks a lot in advance. </p>
http://stackoverflow.com/questions/1192399/declare-datetime-in-xaml-in-silverlight0Declare DateTime in XAML in SilverlightR4cOON2009-07-28T07:29:17Z2009-12-09T10:00:01Z
<p>I succesfully created some constants in Silverlight's XAML like that</p>
<pre><code> <sys:Boolean x:Key="foo">True</sys:Boolean>
</code></pre>
<p>However, when I try to do the same with a <code>DateTime</code> (to initialize some <code>DatePicker</code>
controls)</p>
<pre><code><sys:DateTime x:Name="myDate"/>
</code></pre>
<p>the system throws an <code>XamlParseException</code> "Unknown element: DateTime. [Line: xxx Position: xxx]"</p>
<p>Is there a way to declare <code>DateTime</code> constants (I'm thinking of <code>DateTime.Now</code>) in XAML?</p>
http://stackoverflow.com/questions/643361/how-to-manually-add-data-to-a-datagrid-in-silverlight0How to manually add data to a DataGrid in SilverlightSmith3252009-03-13T15:51:05Z2009-12-09T06:21:28Z
<p>I have found that datagrid columns can be dynamically created and bound in Silverlight. However I can't find a way to bind data to those columns.</p>
<p>If I try to bind any type of object with AutoGenerateColumns = true, then the names of each property of the object get added as columns and the object information is displayed in the grid in addition to the existing columns which show no data.</p>
<p>If I apply a list with AutoGenerateColumns = false, then i still get rows to show up in the table but no data in the columns.</p>
<p>I do not want to create a specific object for each case that i need to display data in the datagird.</p>
<p>I do not want to have my column names limited to the names of properties, e.g. names with out spaces.</p>
<p>I want to be able to bind a list or a dictionary array to the data grid. I also want to be able to control what data shows up in what columns.</p>
http://stackoverflow.com/questions/1862668/screencasting-of-a-silverlight-application0Screencasting of a Silverlight Application?ahrens2009-12-07T20:25:58Z2009-12-09T04:49:55Z
<p>I have got a silverlight application which basically plays videos among other things, as is portrayed below (Silverlight 3): </p>
<pre><code><Grid x:Name="LayoutRoot" Background="White">
<MediaElement AutoPlay="True" Source="World.wmv" />
</Grid>
</code></pre>
<p>But, when I 'screencast' it, using Microsoft Expression Encoder 3 Screen Capture the output video is jagged, and seems like it is recorded at a very low frame rate, while when I 'screencast' a site (for example) one made by the 'Job Output' of Microsoft Expression Encoder 3, it records and plays back at a normal frame rate. Both of the recordings are done with the same settings with the only difference being the code, and work perfectly when viewed in IE8, so I was wondering if there is a property in Silverlight that you need to set, change, etc. that it the Silverlight application gets 'screen casted' correctly. </p>
<p>Thank you,</p>
<p><strong>Update</strong>
Else, is there a way in which you can export a silverlight page to a video file, or similar?</p>
http://stackoverflow.com/questions/1142574/silverlight-2-via-windows-media-services-90Silverlight 2 via Windows Media Services 9ChrisH2009-07-17T10:54:53Z2009-12-09T04:44:59Z
<p>I have been using the Silverlight 2 Media Player that comes with Expression Blend and also the sl2videoplayer from CodePlex and the issue I have come across is that I am unable to forward or rewind the video when it is coming via WMS 9. If I host the same video on a IIS 6 website, it works fine.</p>
<p>WMS was originally hosted on the internal name of <em>stream</em> on port 8888, where as the Silverlight page is host on <em>intranet</em> on port 80. This did not work and I applied the fix (<a href="http://support.microsoft.com/kb/328728" rel="nofollow">http://support.microsoft.com/kb/328728</a>) so that WMS can be hosted on port 80 to see if this would resolve the issue, but it did not.</p>
<p>I have tried using the mms://, rtsp:// and http:// prefixes and neither make any difference (I know Silverlight will fallback to http if mms or rtsp is used).</p>
<p>When trying to host the file on IIS 6, it was using the same internal name of <em>stream</em>, but hosted on a different port and this worked.</p>
<p>I used the source of the sl2videoplayer to debug and found that when it is hosted via WMS, the property CanSeek of the MediaElement returns false, but for IIS it is true.</p>
<p>I have also tried Silverlight v3, but using the same video players and issue remains the same.</p>
<p>Has anyone else had this issue with WMS 9? At the moment we only have Windows 2003 servers and no current plans to use 2008.</p>
http://stackoverflow.com/questions/1870299/aspmediaplayer-silverlight-https-http-issue0asp:MediaPlayer (Silverlight) Https / http issueAndreasKnudsen2009-12-08T22:22:53Z2009-12-09T04:18:29Z
<p>Hi, we have a site (<a href="https://oursite.net" rel="nofollow">https://oursite.net</a>) in which we display a videostream hosted on http (<a href="http://someserver.com" rel="nofollow">http://someserver.com</a>). The site <em>needs</em> to be hosted on https, and we don't control the video, so I'm assuming it needs to be on http. we recently added the option to play the stream through the silverlight asp:MediaElement, which works perfectly fine in our test environment (on http) but doesn't work in production (https).</p>
<p>The info on the web is somewhat confusing as I'm having a hard time differentiating between how this stuff worked at different stages in the silverlight development (seems to have been a bit to and fro) </p>
<p>Is this setup possible at all (hosting the player on https but playing a stream on http) with some sort of policy file?
in that case: does this policy file need to be hosted with the silverlight app (on https) or where the streams are located (http)</p>
<p>Thanks for your time
Andreas </p>
http://stackoverflow.com/questions/1871169/silverlight-treegrid-treelist-functionality0Silverlight TreeGrid/TreeList functionalitySchneider2009-12-09T01:55:59Z2009-12-09T03:59:20Z
<p>Hi,</p>
<p>I have a requirement for a "Tree grid" or "Tree list" control.</p>
<p>This is something that looks like a DataGrid, but the left hand side is a tree that can be expanded and collapsed to show different rows (typically grouped, or perhaps showing data from a heirarchy).</p>
<p>Has anyone tried to build something like this by hand? If so do you recommend that route?</p>
<p>Or am I better of buying the control? If so who sells a good one?</p>
<p>We are targetting Silverlight 4 if that makes a difference</p>
<p><strong>UPDATE:</strong> This is the type of <a href="http://www.syncfusion.com/products/user-interface-edition/wpf/grid/minimal-gtc" rel="nofollow">control</a> I am looking for (but for SL obviously)</p>
http://stackoverflow.com/questions/1871389/silverlight-client-verification1Silverlight - Client Verificationunknown (yahoo)2009-12-09T03:19:21Z2009-12-09T03:32:24Z
<p>Hello,</p>
<p>I have a Silverlight application that needs to retrieve some data from my database. This data is sensitive. Because of this, I only want my Silverlight application to be able to access the data. How do I ensure that only my applications can access the services that expose this data? Is there a way that I can validate a client attempting to retrieve the data?</p>
<p>Thank you!</p>
http://stackoverflow.com/questions/1793487/agenetworkerror-when-loading-a-remote-image-in-silverlight0AG_E_NETWORK_ERROR when loading a remote Image in SIlverlightDavid Brown2009-11-24T22:48:20Z2009-12-09T02:36:18Z
<p>I have a <code>ListBox</code> that gets populated with items read from a JSON response. Each item has an <code>Image</code> control that displays the thumbnail at the remote URL given by the <code>Thumbnail</code> property. I created a custom <code>IValueConverter</code> to convert the URL to a <code>BitmapImage</code>, but the image still didn't display. So I finally realized that I could capture loading errors with the <code>ImageFailed</code> event.</p>
<p>What I get is an <strong>AG_E_NETWORK_ERROR</strong>. I looked at Silverlight's <a href="http://msdn.microsoft.com/en-us/library/cc189008%28VS.95%29.aspx" rel="nofollow">URL Access Restrictions</a> and the table states that loading an <code>Image</code> from another domain is allowed without a <strong>crossdomain.xml</strong> file.</p>
<p>I'm positive that the URL is valid and points to an image, because I can copy and paste it directly from the JSON and view it in a browser. Yet, Silverlight refuses to load it.</p>
<p>Why is this?</p>
<p><strong>EDIT:</strong> I installed Fiddler, which does show requests being made when the Silverlight page is loaded. None of these requests are for the image, however. It appears that Silverlight isn't even attempting to make a request and automatically throwing the exception.</p>
http://stackoverflow.com/questions/1823094/trouble-using-collectionviewsource-in-silverlight0Trouble using CollectionViewSource in SilverlightJohnny2009-11-30T23:20:43Z2009-12-09T02:20:31Z
<p>Hi, I having some trouble when implementing the CollectionViewSource in silverlight. I'm new in this topic, so basically I've been following what I find searching through the web. Here's what I've been trying to do so far.</p>
<p>I'm creating a CollectionViewSource in the resources tag:</p>
<pre><code> <UserControl.Resources>
<CollectionViewSource x:Key="TestCVS">
<CollectionViewSource.SortDescriptions>
<scm:SortDescription PropertyName="Value" Direction="Ascending" />
</CollectionViewSource.SortDescriptions>
</CollectionViewSource>
</UserControl.Resources>
</code></pre>
<p>Then I'm binding my TestCVS in a HierarchicalDataTemplate:</p>
<pre><code><common:HierarchicalDataTemplate ItemsSource="{Binding Source={StaticResource TestCVS}}">
<common:HierarchicalDataTemplate.ItemTemplate>
<common:HierarchicalDataTemplate>
<Border BorderBrush="#FF464646" BorderThickness="1" CornerRadius="3" Padding="5">
<Grid>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock TextWrapping="Wrap" Text="{Binding MyClassField}"/>
</StackPanel>
</Grid>
</Border>
</common:HierarchicalDataTemplate>
</common:HierarchicalDataTemplate.ItemTemplate>
</common:HierarchicalDataTemplate>
</code></pre>
<p>Now, in the code behind I'm assigning the Source for the TestCVS in a property, like this:</p>
<pre><code>private ObservableCollection<MyClass> _MyClass;
public ObservableCollection<MyClass> MyClass
{
get { return _MyClass; }
set
{
var testCVS = (this.Resources["TestCVS"] as CollectionViewSource);
if (testCVS != null)
testCVS.Source = value;
}
}
</code></pre>
<p>After testing this I realize that the information is not showing on screen and I don't really know why, can anyone help me on this matter?</p>
<p>Hope this makes any sense, thanks in advance!</p>
http://stackoverflow.com/questions/1871199/possible-to-programmatically-add-user-control-to-silverlight-grid-column0Possible to programmatically add User Control to Silverlight Grid Column?PortageMonkey2009-12-09T02:09:01Z2009-12-09T02:19:09Z
<p>I have a User Control that I need to programmatically add to a Silverlight Grid t a specified Row and Column index. The requirements are such that I will need to insert at arbitrary indices, such that pure databinding is perhaps not ideal.</p>
<p>I would prefer not to have to create the grid from scratch in the code behind.
Can this be done? Anyone with example?</p>