active questions tagged silverlight-2.0 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T07:24:14Z http://stackoverflow.com/feeds/tag/silverlight-2.0 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/260062/how-do-i-create-a-popup-dialog-box-in-silverlight 4 How do I create a Popup Dialog box in Silverlight ? midas06 2008-11-03T21:41:21Z 2009-11-25T07:38:16Z <p>I'd like to create a popup dialog box in silverlight in which i can manipulate controls, enter data, and return a value. I want it to be modal, so that when it is open, the page "Below" is inaccessible. I havent found an easy way to do this yet. Any suggestions?</p> http://stackoverflow.com/questions/704456/binding-complex-properties-in-silverlight-wpf 1 Binding complex properties in Silverlight/WPF gsnerf 2009-04-01T07:46:00Z 2009-11-24T22:26:10Z <p>Lets say I have a custom data type that looks something like this:</p> <pre><code>public class MyDataType { public string SimpleProp1; public string SimpleProp2; public List&lt;SomeType&gt; ComplexProp; } </code></pre> <p>now I hava a data bound control (i.e. ItemsControl or DataGrid), that is created dynamically. How would the binding defined in xaml code look like to acces a subproperty of the complex property? I thought it should look something like this:</p> <pre><code>&lt;TextBox Text="{Binding simpleSubProp, path=ComplexProp[0]}" /&gt; </code></pre> <p>or</p> <pre><code>&lt;TextBox Text="{Binding path=ComplexProp[0].simpleSubProp}" /&gt; </code></pre> <p>but both of those give me xml parse errors. How should it look correctly? Is it even possible to refer to a specific item of a collection property in souch a way? If it is not, what other options do I have?</p> <p>EDIT, The scenario doesn't seem to be clear enough:</p> <p>I have an</p> <pre><code>IEnumberable&lt;MyDataType&gt; </code></pre> <p>that is bound to an ItemsControl, inside the DataTemplate I have multiple TextBoxes that need to refer to subproperties of an object in the List of the complex property.</p> http://stackoverflow.com/questions/335265/silverlight-2-0-cant-get-the-text-wrapping-behaviour-that-i-want 5 Silverlight 2.0 - Can't get the text wrapping behaviour that I want Anthony 2008-12-02T20:13:58Z 2009-11-22T23:11:12Z <p>I am having trouble getting Silverlight 2.0 to lay out text exactly how I want. I want text with line breaks and embedded links, with wrapping, like HTML text in a web page. </p> <p>Here's the closest that I have come:</p> <pre><code>&lt;UserControl x:Class="FlowPanelTest.Page" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:Controls="clr-namespace:Microsoft.Windows.Controls;assembly=Microsoft.Windows.Controls" Width="250" Height="300"&gt; &lt;Border BorderBrush="Black" BorderThickness="2" &gt; &lt;Controls:WrapPanel&gt; &lt;TextBlock x:Name="tb1" TextWrapping="Wrap"&gt;Short text. &lt;/TextBlock&gt; &lt;TextBlock x:Name="tb2" TextWrapping="Wrap"&gt;A bit of text. &lt;/TextBlock&gt; &lt;TextBlock x:Name="tb3" TextWrapping="Wrap"&gt;About half of a line of text.&lt;/TextBlock&gt; &lt;TextBlock x:Name="tb4" TextWrapping="Wrap"&gt;More than half a line of longer text.&lt;/TextBlock&gt; &lt;TextBlock x:Name="tb5" TextWrapping="Wrap"&gt;More than one line of text, so it will wrap onto the following line.&lt;/TextBlock&gt; &lt;/Controls:WrapPanel&gt; &lt;/Border&gt; &lt;/UserControl&gt; </code></pre> <p>But the issue is that although the text blocks tb1 and tb2 will go onto the same line because there is room enough for them completely, tb3 onwards will not start on the same line as the previous block, even though it will wrap onto following lines.</p> <p>I want each text block to start where the previous one ends, on the same line. I want to put click event handlers on some of the text. I also want paragraph breaks. Essentially I'm trying to work around the lack of FlowDocument and Hyperlink controls in Silverlight 2.0's subset of XAML.</p> <p><hr></p> <p>To answer the questions posed in the answers: </p> <p><strong>Why not use runs for the non-clickable text?</strong> If I just use individual TextBlocks only on the clickable text, then those bits of text will still suffer from the wrapping problem illustrated above. And the TextBlock just before the link, and the TextBlock just after. Essentially all of it. It doesn't look like I have many opportunities for putting multiple runs in the same TextBlock.</p> <p>Dividing the links from the other text with RegExs and loops is not the issue at all, the issue is display layout.</p> <p><strong>Why not put each word in an individual TextBlock in a WrapPanel</strong> Aside from being an ugly hack, this does not play at all well with linebreaks - the layout is incorrect. </p> <p>It would also make the underline style of linked text into a broken line.</p> <p>Here's an example with each word in its own TextBlock. Try running it, note that the linebreak isn't shown in the right place at all.</p> <pre><code>&lt;UserControl x:Class="SilverlightApplication2.Page" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:Controls="clr-namespace:Microsoft.Windows.Controls;assembly=Microsoft.Windows.Controls" Width="300" Height="300"&gt; &lt;Controls:WrapPanel&gt; &lt;TextBlock TextWrapping="Wrap"&gt;Short1 &lt;/TextBlock&gt; &lt;TextBlock TextWrapping="Wrap"&gt;Longer1 &lt;/TextBlock&gt; &lt;TextBlock TextWrapping="Wrap"&gt;Longerest1 &lt;/TextBlock&gt; &lt;TextBlock TextWrapping="Wrap"&gt; &lt;Run&gt;Break&lt;/Run&gt; &lt;LineBreak&gt;&lt;/LineBreak&gt; &lt;/TextBlock&gt; &lt;TextBlock TextWrapping="Wrap"&gt;Short2&lt;/TextBlock&gt; &lt;TextBlock TextWrapping="Wrap"&gt;Longer2&lt;/TextBlock&gt; &lt;TextBlock TextWrapping="Wrap"&gt;Longerest2&lt;/TextBlock&gt; &lt;TextBlock TextWrapping="Wrap"&gt;Short3&lt;/TextBlock&gt; &lt;TextBlock TextWrapping="Wrap"&gt;Longer3&lt;/TextBlock&gt; &lt;TextBlock TextWrapping="Wrap"&gt;Longerest3&lt;/TextBlock&gt; &lt;/Controls:WrapPanel&gt; &lt;/UserControl&gt; </code></pre> <p><strong>What about The LinkLabelControl</strong> as <a href="http://www.silverlightshow.net/items/Silverlight-LinkLabel-control.aspx" rel="nofollow">here</a> and <a href="http://www.codeplex.com/SilverlightLinkLabel" rel="nofollow">here</a>. It has the same problems as the approach above, since it's much the same. Try running the sample, and make the link text longer and longer until it wraps. Note that the link starts on a new line, which it shouldn't. Make the link text even longer, so that the link text is longer than a line. Note that it doesn't wrap at all, it cuts off. This control doesn't handle line breaks and paragraph breaks either.</p> <p><strong>Why not put the text all in runs, detect clicks on the containing TextBlock and work out which run was clicked</strong> Runs do not have mouse events, but the containing TextBlock does. I can't find a way to check if the run is under the mouse (IsMouseOver is not present in SilverLight) or to find the bounding geometry of the run (no clip property). </p> <p>There is <strong>VisualTreeHelper.FindElementsInHostCoordinates()</strong></p> <p>The code below uses VisualTreeHelper.FindElementsInHostCoordinates to get the controls under the click. The output lists the TextBlock but not the Run, since a Run is not a UiElement. </p> <pre><code>private void theText_MouseLeftButtonDown(object sender, System.Windows.Input.MouseButtonEventArgs e) { // get the elements under the click UIElement uiElementSender = sender as UIElement; Point clickPos = e.GetPosition(uiElementSender); var UiElementsUnderClick = VisualTreeHelper.FindElementsInHostCoordinates(clickPos, uiElementSender); // show the controls string outputText = ""; foreach (var uiElement in UiElementsUnderClick) { outputText += uiElement.GetType().ToString() + "\n"; } this.outText.Text = outputText; } </code></pre> <p><strong>Use an empty text block with a margin to space following content onto a following line</strong></p> <p>I'm still thinking about this one. How do you calculate the right width for a line-breaking block to force following content onto the following line? Too short and the following content will still be on the same line, at the right. Too long and the "linebreak" will be on the following line, with content after it. You would have to resize the breaks when the control is resized.</p> <p>Some of the code for this is:</p> <pre><code> TextBlock lineBreak = new TextBlock(); lineBreak.TextWrapping = TextWrapping.Wrap; lineBreak.Text = " "; // need adaptive width lineBreak.Margin = new Thickness(0, 0, 200, 0); </code></pre> http://stackoverflow.com/questions/1772155/how-can-i-test-the-silverlight-install-process 1 How Can I Test the Silverlight Install Process DaveB 2009-11-20T17:46:13Z 2009-11-22T16:00:18Z <p>I would like to customize the user install process for my Silverlight application. I would need to repeatedly go through the installation process on my development workstation Short of uninstalling before each change I make and going through the install process again, is there a way to make my browser think Silverlight is not installed?</p> http://stackoverflow.com/questions/1779069/after-deleting-silverlight-apps-host-init-event-fires-again-in-ie 0 After deleting Silverlight app's host init-event fires again in IE ogojack 2009-11-22T15:38:58Z 2009-11-22T15:42:59Z <p>When I delete html node with silverlight 2.0 app inside, Init event fires again (only in in IE, but not in FF). How can I cope with this strange behaviour? Any help would be appreciated.</p> <p>Thanks.</p> http://stackoverflow.com/questions/819646/wrappanel-in-silverlight-binding-clr-objects 0 WrapPanel in Silverlight, binding CLR Objects. Agi 2009-05-04T10:56:00Z 2009-11-20T12:00:02Z <p>Can anybody please help me? I need to bind CLR Objects to a WrapPanel in SILVERLIGHT. What should be displayed in the end is a couple of Image Thumbnails with their description (Text). I know how to do it with a ListBox, but I need it to be a WrapPanel, so my Thumbs will be displayed horizontally and break into a new raw... and so on.</p> http://stackoverflow.com/questions/496247/hosting-a-silverlight-website 0 Hosting a SilverLight website martin 2009-01-30T16:48:06Z 2009-11-20T05:00:03Z <p>Hi all,</p> <p>I am new to web development and am seeking some help :-)</p> <p>I have followed a silver light tutorial to build a basic silverlight app.</p> <p><a href="http://weblogs.asp.net/scottgu/pages/silverlight-2-end-to-end-tutorial-building-a-digg-search-client.aspx" rel="nofollow">http://weblogs.asp.net/scottgu/pages/silverlight-2-end-to-end-tutorial-building-a-digg-search-client.aspx</a></p> <p>i then hosted this app on aspspider. i have now modified the app to connect to a SQLExpress Db. this uses a 'WCF service' and 'Linq to sql classes' to perform the db search. This all works perfectly in Visualstudio however i am not sure how to make it work in the aspSpider host.</p> <p>So far i have managed to attach the Db, and get the silver light xap to work. but obviously when i click the search button in the website i get a blank screen as the service fails.</p> <p>Any help would be fantastic !!!</p> <p>Bellow is a list of the files in the project.</p> <p>Thanks Martin</p> http://stackoverflow.com/questions/644866/q-can-ag-usercontrol-expose-properties-exposed-for-xaml-to-bind-to 0 Q: Can Ag UserControl expose properties exposed for XAML to bind to? Ciel 2009-03-13T22:39:19Z 2009-11-18T05:00:03Z <p>Hello: I'm pretty mightily surprised and sheepishly stumped:</p> <p>Have a new UserControl backed by UserControl01.cs that is exposing two properties. One is a plain old CLR property, the other the newer DP property format. eg: </p> <pre><code>string PropertyOne {get;set;} and the second property is a public DP (construct is too long to list here). </code></pre> <p>From the XAML side, I wish to expose these value. How?</p> <p>On both properties (old CLR as well as second DP wrapper format) I've tried syntax like: </p> <pre><code> &lt;TextBlock Text={Binding Prop1}/&gt; &lt;TextBlock Text={Binding Source=., Path=Prop1}/&gt; </code></pre> <p>I've tried putting a ref to the class type in the Resource dictionary and referencing it with </p> <pre><code> &lt;TextBlock Text={Binding Source={StaticReference myType}, Path=Prop1}/&gt; </code></pre> <p>but that obviously ends up being a stack overflow as the dictionary instantiates a second copy of the Control...</p> <p>I read a post somewhere that in WPF one can x:Name the control itself, and then</p> <pre><code> &lt;TextBlock Text="{Binding {ElementName=theName, Path=Prop1}"/&gt; </code></pre> <p>but we don't have ElementName binding in Ag...so that's not the way...</p> <p>a) How to bind to a the UserControl's Property? Any property!</p> <p>b) If not (!!!!???!!!!) -- and can only bind to DTO's or other BO's...what's the guiding logic/explanation as to how we should design UserControls that want to expose their values?</p> http://stackoverflow.com/questions/1226427/silverlight-insert-xaml-inside-other-xaml 0 Silverlight insert XAML inside other XAML Code Burn 2009-08-04T09:08:57Z 2009-11-14T14:00:10Z <p>I am using WPF and Silverlight BookControls by Mitsu</p> <p><a href="http://www.codeplex.com/wpfbookcontrol" rel="nofollow">http://www.codeplex.com/wpfbookcontrol</a></p> <p>The WPF example alows that every page in the book to be a XAML file, but the Silverlight example dont.</p> <p>Is there a way load a XAML in every book page in the Silverlight example ? </p> http://stackoverflow.com/questions/339962/replacing-the-decimal-point-key-from-numpad-with-correct-decimal-separator-in 0 Replacing the decimal point key (from numpad) with correct decimal separator (in silverlight!) Tjipke 2008-12-04T09:06:39Z 2009-11-13T06:52:36Z <p>Hi,</p> <p>What I am trying todo when the user is in a textbox (in silverlight 2.0):</p> <ul> <li>When user presses the decimal point (.) <strong>on the numeric pad</strong>, I want to have it replaced by the correct decimal separator (which is comma (,) in a lot of countries)</li> </ul> <p>I can track that the user typed a decimal point by checking in the keydown event </p> <pre><code>void Cell_KeyDown(object sender, KeyEventArgs e) { if (e.Key == Key.Decimal) </code></pre> <p>But how do I replace that key with an other in Silverlight. The e.Key is read only. Is there a way to 'send an other key' to the control? Or any other suggestions?</p> <p>Regards,</p> <p>Tjipke</p> http://stackoverflow.com/questions/1637400/silverlight-3-data-binding-position-of-a-rectangle-on-a-canvas 1 Silverlight 3 - Data Binding Position of a rectangle on a canvas Blounty 2009-10-28T13:53:59Z 2009-11-12T21:56:22Z <p>Hi Everyone,</p> <p>I am currently trying to bind a collection of objects to a Canvas in Silverlight 3 using an ItemsControl as below:</p> <pre><code>&lt;ItemsControl x:Name="ctrl" ItemsSource="{Binding myObjectsCollection}"&gt; &lt;ItemsControl.ItemsPanel&gt; &lt;ItemsPanelTemplate&gt; &lt;Canvas&gt;&lt;/Canvas&gt; &lt;/ItemsPanelTemplate&gt; &lt;/ItemsControl.ItemsPanel&gt; &lt;ItemsControl.ItemTemplate&gt; &lt;DataTemplate&gt; &lt;Rectangle Stroke="LightGray" Fill="Black" StrokeThickness="2" RadiusX="15" RadiusY="15" Canvas.Left="{Binding XAxis}" Height="25" Width="25"&gt; &lt;/Rectangle&gt; &lt;/DataTemplate&gt; &lt;/ItemsControl.ItemTemplate&gt; &lt;/ItemsControl&gt; </code></pre> <p>Unfortunately it seems the binding on the Canvas.Left is being ignored. From what i have learned <a href="http://betaforums.silverlight.net/forums/p/116384/262984.aspx" rel="nofollow">here</a> it would appear this is due to the items being placed inside a content presenter not the actual canvas i have specified in the items panel.</p> <p>Is there a way i can use data binding to determine the position of elements on a canvas?</p> http://stackoverflow.com/questions/1724100/missing-unload-event-in-silverlight-2 0 Missing Unload event in Silverlight 2 Phillip Ngan 2009-11-12T17:49:11Z 2009-11-12T18:18:24Z <p>Silverlight 2 is missing the unload event for a UserControl. Has anyone implemented a workaround for this?</p> http://stackoverflow.com/questions/739252/compiling-silverlight-runtime-question 0 Compiling Silverlight runtime question gcomstock 2009-04-11T00:34:05Z 2009-11-11T08:43:06Z <p>I have created a Silverlight project which also contains a Web project.</p> <p>I have a few class files in my web project which use System.Windows.Point and System.Windows.Size data types and I am getting compile errors when I try to pass either of these types in a List like <code>List&lt;Point&gt;</code> in the Silverlight project. If I try without the <code>List&lt;&gt;</code> I still get the Point data type error.</p> <p>I reviewed information about compiling Silverlight assemblies from <a href="http://www.netfxharmonics.com/2008/12/Reusing-NET-Assemblies-in-Silverlight" rel="nofollow">David Betz</a> site I found a <a href="http://www.codeproject.com/KB/silverlight/SLAssemblies.aspx" rel="nofollow">tool</a> to help me used the first of the two approaches he discusses and have successfully compiled the runtime and referenced it in my Silverlight project.</p> <p>Here are the errors:</p> <ul> <li>The type 'System.Windows.Point' is defined in an assembly that is not referenced. You must add a reference to assembly 'WindowsBase, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. C:\Documents and Settings\Gary\My Documents\Visual Studio 2008\Projects\GEP.Reports.Spatial\GEP.Reports.Spatial\MainPage.xaml.cs</li> <li>cannot convert from 'System.Collections.Generic.List [c:\Program Files\Reference Assemblies\Microsoft\Framework\Silverlight\v3.0\mscorlib.dll]' to 'System.Collections.Generic.List [c:\Program Files\Reference Assemblies\Microsoft\Framework\Silverlight\v3.0\mscorlib.dll]</li> </ul> <p>What step am I missing in order to get these types added to my Silverlight runtime.</p> <p>Thanks for any help.</p> <p>Gary</p> http://stackoverflow.com/questions/910518/silverlight-access-client-desktop-display-properties 1 Silverlight: Access client desktop- Display properties Blessy Antony 2009-05-26T12:52:50Z 2009-11-10T15:28:14Z <p>Hi,</p> <p>I want to access the display properties of the client desktop in silverlight application and modify the application layout according 2 the ones set on client machine. When we right click on desktop and choose properties we get display properties dialog. i want to access appearance and theme properties from this. i hv to retrieve the appearance properties like font, theme etc and apply them in my silverlight application. I am also not sure whether this can be done in a normal web application.</p> <p>Tried to google it but could find anything except code for resizing. But I want to access not only the screen width and height but the appearance settings also.</p> <p>Any help would be appreciated.</p> <p>Thanks :)</p> http://stackoverflow.com/questions/480527/contentpresenter-losing-datacontext 0 ContentPresenter losing DataContext Chris Mancini 2009-01-26T17:07:06Z 2009-11-09T22:27:14Z <p>I want to create a "FlipPanel", which provides two different views of the same object. Here is the approach I am taking.</p> <p>This is the main page, which consists of an ItemsControl whose ItemTemplate is a FlipPanel. The FlipPanel exposes two properties which define the DataTemplate to use for the Front and the Back.</p> <p></p> <pre><code>&lt;UserControl.Resources&gt; &lt;ControlTemplate x:Key="MyFlipTemplate"&gt; &lt;StackPanel&gt; &lt;Button Content="Flip" x:Name="PART_FlipButton"/&gt; &lt;ContentPresenter Content="{TemplateBinding Content}" x:Name="PART_FlipContent"/&gt; &lt;/StackPanel&gt; &lt;/ControlTemplate&gt; &lt;DataTemplate x:Key="Front"&gt; &lt;StackPanel Orientation="Horizontal"&gt; &lt;TextBlock Text="Front"/&gt; &lt;TextBlock Text="{Binding Name}"/&gt; &lt;/StackPanel&gt; &lt;/DataTemplate&gt; &lt;DataTemplate x:Key="Back"&gt; &lt;StackPanel&gt; &lt;TextBlock Text="Back"/&gt; &lt;TextBlock Text="{Binding Description}"/&gt; &lt;/StackPanel&gt; &lt;/DataTemplate&gt; &lt;/UserControl.Resources&gt; &lt;StackPanel&gt; &lt;ItemsControl x:Name="_items"&gt; &lt;ItemsControl.ItemsPanel&gt; &lt;ItemsPanelTemplate&gt; &lt;StackPanel&gt;&lt;/StackPanel&gt; &lt;/ItemsPanelTemplate&gt; &lt;/ItemsControl.ItemsPanel&gt; &lt;ItemsControl.ItemTemplate&gt; &lt;DataTemplate&gt; &lt;SLTest:FlipPanel Template="{StaticResource MyFlipTemplate}" FrontDataTemplate="{StaticResource Front}" BackDataTemplate="{StaticResource Back}" Side="Front"/&gt; &lt;/DataTemplate&gt; &lt;/ItemsControl.ItemTemplate&gt; &lt;/ItemsControl&gt; &lt;/StackPanel&gt; </code></pre> <p></p> <p>The Code Behind for the main page, is very simple as it just sets the DataContext of the ItemsControl to a list of Test Data.</p> <pre> using System.Collections.Generic; using System.Windows.Controls; namespace SLTest { public partial class NewPage : UserControl { public NewPage() { InitializeComponent(); _items.ItemsSource = Items; } public IList Items { get { return new List { new NewClass { Name = "Name 1", Description = "Description 1"}, new NewClass { Name = "Name 2", Description = "Description 2"}, new NewClass { Name = "Name 3", Description = "Description 3"}, new NewClass { Name = "Name 4", Description = "Description 4"} }; } } } public class NewClass { public string Name; public string Description; } } </pre> <p>The FlipPanel code is relatively simple as well, as it attempts to change the DataTemplate based on the Side DependencyProperty. The issue appears to be that the ContentPresenter's DataContext is lost at some point. In the code I have two comments that indicate the validity of the DataContext for the ContentPresenter.</p> <pre> using System; using System.Windows; using System.Windows.Controls; namespace SLTest { [TemplatePart(Name = FlipPanel.ButtonPart, Type = typeof(Button))] [TemplatePart(Name = FlipPanel.ContentPart, Type = typeof(ContentPresenter))] public partial class FlipPanel : ContentControl { private const string ButtonPart = "PART_FlipButton"; private const string ContentPart = "PART_FlipContent"; public enum FlipSide { Front, Back } private FlipSide _flipSide; public static readonly DependencyProperty SideProperty = DependencyProperty.RegisterAttached("FlipSide", typeof(FlipSide), typeof(FlipPanel), new PropertyMetadata(FlipSide.Front, FlipSidePropertyChanged)); public static readonly DependencyProperty FrontDataTemplateProperty = DependencyProperty.Register("FrontDataTemplate", typeof (DataTemplate), typeof (FlipPanel), null); public static readonly DependencyProperty BackDataTemplateProperty = DependencyProperty.Register("BackDataTemplate", typeof(DataTemplate), typeof(FlipPanel), null); private Button _flipButton; private ContentPresenter _content; public FlipPanel() { InitializeComponent(); } public DataTemplate FrontDataTemplate { get { return (DataTemplate) GetValue(FrontDataTemplateProperty); } set { SetValue(FrontDataTemplateProperty, value); } } public DataTemplate BackDataTemplate { get { return (DataTemplate)GetValue(BackDataTemplateProperty); } set { SetValue(BackDataTemplateProperty, value); } } private static void FlipSidePropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { var flipSide = (FlipSide)e.NewValue; var flipPanel = d as FlipPanel; flipPanel._content.ContentTemplate = flipSide == FlipSide.Front ? flipPanel.FrontDataTemplate : flipPanel.BackDataTemplate; } public override void OnApplyTemplate() { _flipButton = GetTemplateChild(ButtonPart) as Button; _flipButton.Click += OnFlipClicked; _content = GetTemplateChild(ContentPart) as ContentPresenter; // _content.DataContext is valid right here... _content.ContentTemplate = Side == FlipSide.Front ? FrontDataTemplate : BackDataTemplate; base.OnApplyTemplate(); } private void OnFlipClicked(object sender, RoutedEventArgs e) { // _content.DataContext is now NULL!!!! Side = (Side == FlipSide.Front) ? FlipSide.Back : FlipSide.Front; } public FlipSide Side { get { return (FlipSide) GetValue(SideProperty); } set { SetValue(SideProperty, value); } } } } </pre> <p>Any ideas?</p> <p>I am not sure if this is the right approach to solving my requirement, if there is a better way I would welcome any further suggestions.</p> <p>Thanks</p> http://stackoverflow.com/questions/1366075/silverlight-defaultstyle-problem 0 Silverlight defaultStyle problem Lebedev 2009-09-02T06:14:36Z 2009-11-09T21:47:35Z <p>I have the following scenario:</p> <ol> <li>Create a new class library project called Lib1 1.1. Add a new control called control1, Themes/generic.xaml file and specify the default style of control1.</li> <li>Create a new class library project called lib2. 2.1.Add a new control called control2, Themes/generic.xaml file and specify the default style of control2. In the dafaultStyle of control2 I use control1. </li> </ol> <p>My question is: Do I have to copy/paste the defaultStyle xaml of control1 into the generic.xaml of lib2, to use control1 with its style applied in control2? </p> http://stackoverflow.com/questions/229117/xamlparseexception-attribute-in-custom-control-missing-but-its-defined 0 XamlParseException: Attribute in custom control missing, but it's defined! Daniel Beck 2008-10-23T09:37:31Z 2009-11-09T18:00:12Z <p>I <em>sometimes</em> get the following exception for a custom control of mine:</p> <p><code>XamlParseException occurred</code> <code>Unknown attribute Points in element SectionClickableArea [Line: 10 Position 16]</code></p> <p>The stack trace:</p> <pre><code>{System.Windows.Markup.XamlParseException: Unknown attribute Points on element SectionClickableArea. [Line: 10 Position: 16] at System.Windows.Application.LoadComponent(Object component, Uri resourceLocator) at SomeMainDialog.InitializeComponent() at SomeMainDialog..ctor()} </code></pre> <p>The element declaration where this happens looks like this (the <strong>event handler</strong> referenced here is defined, of course):</p> <pre><code>&lt;l:SectionClickableArea x:Name="SomeButton" Points="528,350, 508,265, 520,195, 515,190, 517,165, 530,120, 555,75, 570,61, 580,60, 600,66, 615,80, 617,335, 588,395, 550,385, 540,390, 525,393, 520,385" Click="SomeButton_Click"/&gt; </code></pre> <p>This is part of the code of <code>SectionClickableArea</code>:</p> <pre><code>public partial class SectionClickableArea : Button { public static readonly DependencyProperty PointsProperty = DependencyProperty.Register("Points", typeof(PointCollection), typeof(SectionClickableArea), new PropertyMetadata((s, e) =&gt; { SectionClickableArea area = (SectionClickableArea) s; area.areaInfo.Points = (PointCollection) e.NewValue; area.UpdateLabelPosition(); })); public PointCollection Points { get { return (PointCollection) GetValue(PointsProperty); } set { SetValue(PointsProperty, value); } } </code></pre> <p>I use this control for something like a polygon-shaped button. Therefore I'm inheriting from button. I've had similar problems (<code>E_AG_BAD_PROPERTY_VALUE</code> on another <code>DependencyProperty</code> of type string, according to the line and column given, etc) with this control for weeks, but I have absolutely no idea why.</p> <p><hr /></p> <p>Another exception for the same control occurred this morning for another user (taken from a log and translated from German):</p> <pre><code>Type: System.InvalidCastException Message: The object of type System.Windows.Controls.ContentControl could not be converted to type [...]SectionClickableArea. at SomeOtherMainDialog.InitializeComponent() at SomeOtherMainDialog..ctor() </code></pre> <p>Inner exception:</p> <pre><code>Type: System.Exception Message: An HRESULT E_FAIL error was returned when calling COM component at MS.Internal.XcpImports.CheckHResult(UInt32 hr) at MS.Internal.XcpImports.SetValue(INativeCoreTypeWrapper obj, DependencyProperty property, DependencyObject doh) at MS.Internal.XcpImports.SetValue(INativeCoreTypeWrapper doh, DependencyProperty property, Object obj) at System.Windows.DependencyObject.SetObjectValueToCore(DependencyProperty dp, Object value) at System.Windows.DependencyObject.SetValueInternal(DependencyProperty dp, Object value, Boolean allowReadOnlySet, Boolean isSetByStyle, Boolean isSetByBuiltInStyle) at System.Windows.DependencyObject.SetValueInternal(DependencyProperty dp, Object value) at System.Windows.DependencyObject.SetValue(DependencyProperty dp, Object value) at System.Windows.Controls.Control.set_DefaultStyleKey(Object value) at System.Windows.Controls.ContentControl..ctor() at System.Windows.CoreTypes.GetCoreWrapper(Int32 typeId) at MS.Internal.ManagedPeerTable.EnsureManagedPeer(IntPtr unmanagedPointer, Int32 typeIndex, Type type, Boolean preserveManagedObjectReference) at MS.Internal.ManagedPeerTable.EnsureManagedPeer(IntPtr unmanagedPointer, Int32 typeIndex, Type type) at MS.Internal.ManagedPeerTable.GetManagedPeer(IntPtr nativeObject) at MS.Internal.FrameworkCallbacks.SetPropertyAttribute(IntPtr nativeTarget, String attrName, String attrValue, String attachedDPOwnerNamespace, String attachedDPOwnerAssembly) </code></pre> <p>Any ideas what's wrong with the control, or what I can do to find the source of these exceptions? As I said, these problem occur only every few dozen times the control is instantiated.</p> http://stackoverflow.com/questions/1678695/integrating-silverlight-into-aspx-page 1 Integrating Silverlight into aspx page Dilse Naaz 2009-11-05T06:28:27Z 2009-11-06T18:11:14Z <p>How we can add the silverlight project into a aspx page. I had created one digital clock project in silverlight. But i don't know how to integrate with the aspx page. Thanks in advance..</p> http://stackoverflow.com/questions/1268027/save-silverlight-datagrid-sort 0 Save Silverlight DataGrid sort Scott 2009-08-12T18:52:24Z 2009-11-06T15:25:59Z <p>I have a Silverlight 2.0 DataGrid that contains a list of items that needs to be refreshed in an interval to display the up-to-the-minute information. There are items in this grid that may be added and may be removed while the screen is being displayed to the current user. For Example: </p> <p>If grid looks like the following, then after a minute the data needs to be refreshed because another user has added a 4th entry. (notice the sort is assending by Last Name)</p> <blockquote> <p><img src="http://img16.imageshack.us/img16/1667/datagrid.jpg" alt="Data Grid" /></p> </blockquote> <p>Then when I get the new data set and set it to the datagrid's DataSource property, it resorts the array based on my first column like so:</p> <blockquote> <p><img src="http://img19.imageshack.us/img19/1294/datagridb.jpg" alt="Data Grid2" /></p> </blockquote> <p>Is there any way to reapply the sort after the data source has been updated? I'd like to save the fact that the data grid is sorted by last name, then update the data source, and then reapply the sort to the data grid. So, in the end the datagrid would look like the following: </p> <blockquote> <p><img src="http://img13.imageshack.us/img13/4636/datagrid2.jpg" alt="Data Grid3" /></p> </blockquote> <p>These screen shots are of course not a Silverlight data grid, but this is for simplicity in explaining the situation.</p> http://stackoverflow.com/questions/156089/silverlight-2-0-datagrid-how-to-remove-mouseover-effect 2 Silverlight 2.0 DataGrid How to remove mouseover effect Kyle 2008-10-01T03:14:24Z 2009-11-05T15:54:31Z <p>I am just starting with SL and WPF. I am using the DataGrid control and I need to remove the mouseover effect (I actually will need to do more customizations than that). How do I do this. I think I need to do it with a control template but not sure how. I'm researching and reading right now. Any help would be appreciated.</p> http://stackoverflow.com/questions/636630/silverlight-messagebox-show-blocking-wcf-service-call-in-backgroundworker 1 Silverlight MessageBox.Show blocking WCF service call in BackgroundWorker Mike Schall 2009-03-11T22:27:31Z 2009-11-05T06:00:05Z <p>When a MessageBox is being displayed from Silverlight, any calls to a WCF service being executed in a BackgroundWorker are blocked. The OpenFileDialog.ShowDialog allows these calls to go through. Is the browser (IE7) blocking network access during a MessageBox? </p> <p>We can create our own modal window, but this causes developer code to change as it must be asynchronous. (developer code does not stop while custom "MessageBox" is displayed)</p> <p>Any ideas how to work around this?</p> http://stackoverflow.com/questions/1673989/httpwebrequest-to-sll-uri-in-silverlight-2-0 0 HttpWebRequest to SLL Uri in Silverlight 2.0 Ries 2009-11-04T14:12:18Z 2009-11-04T19:48:31Z <p>How do I do this? It seems the SilverLight 2.0 HttpWebRequest does not allow you to set Credentials or set the Authorization header.</p> http://stackoverflow.com/questions/858469/how-to-get-datetime-in-silverlight 0 how to get datetime in silverlight? Usman Masood 2009-05-13T14:54:14Z 2009-11-03T07:20:39Z <p>from title it appears a stupid question :) i know but i have a silverlight application that needs to send datetime to a 3rdparty web method and based on datetime populate some client side controls... now i know how to get datetime from client but problem is that client time could be wrong........ one method is to use a webservice to get datetime any other idea?</p> http://stackoverflow.com/questions/552756/can-silverlight-initiate-page-refreshes 3 Can Silverlight initiate Page Refreshes? Scott Ferguson 2009-02-16T09:38:21Z 2009-11-03T00:04:40Z <p>UPDATE: An alternative title for this could be: How do I call javascript from my silverlight 2.0 application.</p> <p>Here is a quick question for all you Silverlight gurus.</p> <p>I have a Silverlight app that displays a stopwatch countdown. The app is hosted in an ASP.Net web application, What I want it to do is when the stopwatch hits zero, the app forces a server page refresh of the hosting page.</p> <p>Is this possible?</p> <p>If so, any chance of a code snippet? </p> http://stackoverflow.com/questions/327996/http-post-xml-to-rest-singleton-service-throws-notsupportedexception 0 HTTP POST XML to REST Singleton Service throws NotSupportedException bendewey 2008-11-29T20:51:37Z 2009-11-02T21:00:02Z <p>I have the following REST Host in a silverlight application. I'm getting a NotSupportedException on the EndGetResponse() call of the Save Method. In this sample I'm using the default config for a REST Singleton Service from the WCF REST Starter Kit, with the exception of some changes to the OnAddItem method to accept updates via a POST (since silverlight PUT isn't supported). I'm getting a StatusCode 200 when I make a post from Fiddler. The Service is hosted on the same site as the SilverlightPage, so I don't have any x-domain policy stuff setup. Am I missing something obvious?</p> <p>The Load methods work fine.</p> <pre><code>namespace SilverlightApplication2 { public class Customer { public string Name { get; set; } } public class RestHost { public event EventHandler Loaded = delegate { }; public event EventHandler Error = delegate { }; public Customer Customer { get; set; } public string ErrorMessage { get; set; } public RestHost() { Customer = new Customer(); Load(); } private void Load() { // begin loading customer var request = (HttpWebRequest)WebRequest.Create(new Uri("http://localhost:41078/SilverlightApplication2.Web/Service.svc/")); request.BeginGetResponse(delegate(IAsyncResult result) { try { var resp = request.EndGetResponse(result); var doc = XDocument.Load(resp.GetResponseStream()); Customer.Name = doc.Element("SampleItem").Element("Value").Value; Loaded(this, EventArgs.Empty); } catch (Exception ex) { ErrorMessage = ex.GetBaseException().Message; Error(this, EventArgs.Empty); } }, null); } public void Save() { var request = (HttpWebRequest)WebRequest.Create(new Uri("http://localhost:41078/SilverlightApplication2.Web/Service.svc/")); request.Method = "POST"; request.ContentType = "application/xml"; request.BeginGetRequestStream(delegate(IAsyncResult result) { var postDoc = new XDocument( new XElement("SampleItem", new XAttribute(XNamespace.Xmlns + "i", "http://www.w3.org/2001/XMLSchema-instance"), new XElement("Value", Customer.Name) ) ); postDoc.Save(request.EndGetRequestStream(result)); request.BeginGetResponse(delegate(IAsyncResult result2) { try { var resp = request.EndGetResponse(result2); // NotSupportedExecption here var doc = XDocument.Load(resp.GetResponseStream()); Customer.Name = doc.Element("SampleItem").Element("Value").Value; Loaded(this, EventArgs.Empty); } catch (Exception ex) { ErrorMessage = ex.GetBaseException().Message; Error(this, EventArgs.Empty); } }, null); }, null); } } } </code></pre> <p>Also here is the Page Code as well</p> <pre><code>&lt;UserControl x:Class="SilverlightApplication2.Page" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Width="400" Height="300"&gt; &lt;Grid x:Name="LayoutRoot" Background="White"&gt; &lt;StackPanel Width="100" HorizontalAlignment="Left" Margin="15"&gt; &lt;TextBlock&gt;Customer&lt;/TextBlock&gt; &lt;TextBox x:Name="CustomerName" /&gt; &lt;TextBlock Foreground="LightGray" x:Name="LoadingLabel" Margin="5,-19,0,0"&gt;Loading ...&lt;/TextBlock&gt; &lt;Button Content="Save" Margin="0,5,0,0" Click="Button_Click" /&gt; &lt;/StackPanel&gt; &lt;/Grid&gt; &lt;/UserControl&gt; </code></pre> <p>Code-Behind</p> <pre><code>namespace SilverlightApplication2 { public partial class Page : UserControl { private RestHost _host; public Page() { InitializeComponent(); _host = new RestHost(); _host.Loaded += delegate { this.Dispatcher.BeginInvoke(delegate { this.LoadingLabel.Visibility = Visibility.Collapsed; this.CustomerName.Text = _host.Customer.Name; }); }; _host.Error += delegate { this.Dispatcher.BeginInvoke(delegate { HtmlPage.Window.Alert(_host.ErrorMessage); }); }; } private void Button_Click(object sender, RoutedEventArgs e) { _host.Customer.Name = this.CustomerName.Text; _host.Save(); } } } </code></pre> http://stackoverflow.com/questions/918531/silverlight-wcf-service-bound-to-grid-grid-is-blank-am-i-missing-something 0 Silverlight WCF Service Bound to Grid - Grid is Blank ... am I missing something? Dvojrak 2009-05-27T23:43:24Z 2009-10-31T05:00:02Z <p>Here's my situation - I am starting my first SL application coming from a Windows background where I have the MVC pattern in place. I am thinking I can take advantage of tha pattern, so I jump right in to creating a SL application (solution) with 3 projects --> 1 holding my Model (business objects from before), SL app (automatically generated when I picked SL project), and 1 SL.Web project (automatically generated when I picked SL project). </p> <p>Here are the steps I did: I dropped a blank grid onto my xaml file, created a service and it is being recognized w/o any problems. Added a "Silverlight-enabled WCF Service" to my Web project and w/in my project I referenced my "Model" project. Within [OperationContract], I created the following method (service):</p> <pre><code>[OperationContract] public EmployeeCollection GetEmployees() { EmployeeCollection employees = Model.EmployeeCollection.GetAllEmployees(); return employees; } </code></pre> <p>When I debug though this and put a breakpoint, I DO see data on return of employees, so I KNOW data is being returned. </p> <p>Now, on my page.xaml.cs file, it seems that that my grid is not being populated somehow, but don't why.</p> <p>I have the following snippet:</p> <pre><code>void MyWebService_GetEmploteesCompleted(object sender, EmployeeWebService.GetEmployeesCompletedEventArgs e) { dataGrid.ItemsSource = e.Result; } </code></pre> <p>Where else should I be looking? What can I be missing? Do I have to add other snippets of code to work w/ my BLL (Model)?</p> <p>Thanks for any advice.</p> <p>=============================</p> <p>BTW, while debugging, in the "Autos" window, I notice the following values coming through on _GetEMployeesCompleted():</p> <p>dataGrid.ItemSource ........... Count = 30 e.Result ......... Count = 30</p> <p>Why aren't the values showing up on my DataGrid?</p> http://stackoverflow.com/questions/201947/how-to-replace-the-click-event-with-a-mouseover-in-a-silverlight-2-0-combobox 0 How to replace the click event with a mouseover in a Silverlight 2.0 Combobox? Kyle 2008-10-14T16:48:35Z 2009-10-25T04:00:03Z <p>I have a combo box that in Siverlight 2.0 that I want it to open when a user mouses over the toggle button and then close when they mouse away. The default behavior is a click. Here is my style code (sorry it is so long):</p> <pre><code>&lt;Style x:Key="HelpComboBoxStyle" TargetType="ComboBox"&gt; &lt;Setter Property="Padding" Value="0,0,0,0"/&gt; &lt;Setter Property="Background" Value="#FF1F3B53"/&gt; &lt;Setter Property="HorizontalContentAlignment" Value="Left"/&gt; &lt;Setter Property="BorderThickness" Value="1"/&gt; &lt;Setter Property="TabNavigation" Value="Once"/&gt; &lt;Setter Property="BorderBrush" Value="#104F9B"/&gt; &lt;Setter Property="Template"&gt; &lt;Setter.Value&gt; &lt;ControlTemplate TargetType="ComboBox"&gt; &lt;Grid&gt; &lt;Grid.Resources&gt; &lt;Style TargetType="ToggleButton" x:Name="comboToggleStyle"&gt; &lt;Setter Property="BorderBrush" Value="#104F9B"/&gt; &lt;Setter Property="BorderThickness" Value="1"/&gt; &lt;Setter Property="Padding" Value="3"/&gt; &lt;Setter Property="Template"&gt; &lt;Setter.Value&gt; &lt;ControlTemplate TargetType="ToggleButton"&gt; &lt;Grid&gt; &lt;vsm:VisualStateManager.VisualStateGroups&gt; &lt;vsm:VisualStateGroup x:Name="CommonStates"&gt; &lt;vsm:VisualStateGroup.Transitions&gt; &lt;vsm:VisualTransition GeneratedDuration="00:00:00.1" To="MouseOver"/&gt; &lt;vsm:VisualTransition GeneratedDuration="00:00:00.1" To="Pressed"/&gt; &lt;/vsm:VisualStateGroup.Transitions&gt; &lt;vsm:VisualState x:Name="Normal"/&gt; &lt;vsm:VisualState x:Name="MouseOver"&gt; &lt;Storyboard&gt; &lt;ObjectAnimationUsingKeyFrames Duration="00:00:00" Storyboard.TargetName="PopupBorder" Storyboard.TargetProperty="(UIElement.Visibility)"&gt; &lt;DiscreteObjectKeyFrame KeyTime="00:00:00"&gt; &lt;DiscreteObjectKeyFrame.Value&gt; &lt;Visibility&gt;Visible&lt;/Visibility&gt; &lt;/DiscreteObjectKeyFrame.Value&gt; &lt;/DiscreteObjectKeyFrame&gt; &lt;/ObjectAnimationUsingKeyFrames&gt; &lt;/Storyboard&gt; &lt;/vsm:VisualState&gt; &lt;vsm:VisualState x:Name="Pressed"&gt; &lt;Storyboard&gt; &lt;DoubleAnimationUsingKeyFrames Storyboard.TargetName="BackgroundOverlay2" Storyboard.TargetProperty="Opacity"&gt; &lt;SplineDoubleKeyFrame KeyTime="0" Value="1"/&gt; &lt;/DoubleAnimationUsingKeyFrames&gt; &lt;DoubleAnimationUsingKeyFrames Storyboard.TargetName="Highlight" Storyboard.TargetProperty="(UIElement.Opacity)"&gt; &lt;SplineDoubleKeyFrame KeyTime="0" Value="1"/&gt; &lt;/DoubleAnimationUsingKeyFrames&gt; &lt;ColorAnimationUsingKeyFrames Storyboard.TargetName="BackgroundGradient" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[1].(GradientStop.Color)"&gt; &lt;SplineColorKeyFrame KeyTime="0" Value="#E5FFFFFF"/&gt; &lt;/ColorAnimationUsingKeyFrames&gt; &lt;ColorAnimationUsingKeyFrames Storyboard.TargetName="BackgroundGradient" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[2].(GradientStop.Color)"&gt; &lt;SplineColorKeyFrame KeyTime="0" Value="#BCFFFFFF"/&gt; &lt;/ColorAnimationUsingKeyFrames&gt; &lt;ColorAnimationUsingKeyFrames Storyboard.TargetName="BackgroundGradient" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[3].(GradientStop.Color)"&gt; &lt;SplineColorKeyFrame KeyTime="0" Value="#6BFFFFFF"/&gt; &lt;/ColorAnimationUsingKeyFrames&gt; &lt;ColorAnimationUsingKeyFrames Storyboard.TargetName="BackgroundGradient" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Color)"&gt; &lt;SplineColorKeyFrame KeyTime="0" Value="#F2FFFFFF"/&gt; &lt;/ColorAnimationUsingKeyFrames&gt; &lt;/Storyboard&gt; &lt;/vsm:VisualState&gt; &lt;vsm:VisualState x:Name="Disabled"&gt; &lt;Storyboard&gt; &lt;DoubleAnimationUsingKeyFrames Storyboard.TargetName="DisabledVisualElement" Storyboard.TargetProperty="(UIElement.Opacity)"&gt; &lt;SplineDoubleKeyFrame KeyTime="0" Value="1"/&gt; &lt;/DoubleAnimationUsingKeyFrames&gt; &lt;/Storyboard&gt; &lt;/vsm:VisualState&gt; &lt;/vsm:VisualStateGroup&gt; &lt;vsm:VisualStateGroup x:Name="CheckStates"/&gt; &lt;vsm:VisualStateGroup x:Name="FocusStates"/&gt; &lt;/vsm:VisualStateManager.VisualStateGroups&gt; &lt;Rectangle x:Name="Background" Fill="{TemplateBinding Background}" Stroke="{TemplateBinding BorderBrush}" StrokeThickness="{TemplateBinding BorderThickness}" /&gt; &lt;Rectangle x:Name="BackgroundOverlay" Opacity="0" Fill="#FF448DCA" Stroke="#00000000" StrokeThickness="{TemplateBinding BorderThickness}" /&gt; &lt;Rectangle x:Name="BackgroundOverlay2" Opacity="0" Fill="#FF448DCA" Stroke="#00000000" StrokeThickness="{TemplateBinding BorderThickness}" /&gt; &lt;Rectangle Margin="{TemplateBinding BorderThickness}" x:Name="BackgroundGradient" Stroke="#FFFFFFFF" StrokeThickness="2" &gt; &lt;Rectangle.Fill&gt; &lt;LinearGradientBrush EndPoint=".7,1" StartPoint=".7,0"&gt; &lt;GradientStop Color="#FFFFFFFF" Offset="0"/&gt; &lt;GradientStop Color="#F9FFFFFF" Offset="0.375"/&gt; &lt;GradientStop Color="#E5FFFFFF" Offset="0.625"/&gt; &lt;GradientStop Color="#C6FFFFFF" Offset="1"/&gt; &lt;/LinearGradientBrush&gt; &lt;/Rectangle.Fill&gt; &lt;/Rectangle&gt; &lt;Rectangle x:Name="BackgroundOverlay3" Opacity="0" Fill="#FF448DCA" Stroke="#00000000" StrokeThickness="{TemplateBinding BorderThickness}"/&gt; &lt;Rectangle Margin="{TemplateBinding BorderThickness}" x:Name="BackgroundGradient2" Opacity="0" Stroke="#FFFFFFFF" StrokeThickness="2" &gt; &lt;Rectangle.Fill&gt; &lt;LinearGradientBrush EndPoint=".7,1" StartPoint=".7,0"&gt; &lt;GradientStop Color="#FFFFFFFF" Offset="0"/&gt; &lt;GradientStop Color="#F9FFFFFF" Offset="0.375"/&gt; &lt;GradientStop Color="#E5FFFFFF" Offset="0.625"/&gt; &lt;GradientStop Color="#C6FFFFFF" Offset="1"/&gt; &lt;/LinearGradientBrush&gt; &lt;/Rectangle.Fill&gt; &lt;/Rectangle&gt; &lt;Rectangle Margin="{TemplateBinding BorderThickness}" x:Name="Highlight" IsHitTestVisible="false" Opacity="0" Stroke="#FF45D6FA" StrokeThickness="2" /&gt; &lt;ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" Margin="{TemplateBinding Padding}" x:Name="contentPresenter" VerticalAlignment="{TemplateBinding VerticalContentAlignment}" Content="{TemplateBinding Content}" ContentTemplate="{TemplateBinding ContentTemplate}"/&gt; &lt;Rectangle x:Name="DisabledVisualElement" IsHitTestVisible="false" Opacity="0" Fill="#A5FFFFFF" /&gt; &lt;Rectangle x:Name="FocusVisualElement" IsHitTestVisible="false" Visibility="Collapsed" Stroke="#FF45D6FA" StrokeThickness="2" /&gt; &lt;/Grid&gt; &lt;/ControlTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; &lt;/Grid.Resources&gt; &lt;vsm:VisualStateManager.VisualStateGroups&gt; &lt;vsm:VisualStateGroup x:Name="CommonStates"&gt; &lt;vsm:VisualStateGroup.Transitions&gt; &lt;vsm:VisualTransition GeneratedDuration="00:00:00.1"/&gt; &lt;vsm:VisualTransition From="MouseOver" GeneratedDuration="00:00:00.1000000" To="Normal"/&gt; &lt;/vsm:VisualStateGroup.Transitions&gt; &lt;vsm:VisualState x:Name="Normal"/&gt; &lt;vsm:VisualState x:Name="MouseOver"/&gt; &lt;vsm:VisualState x:Name="Disabled"&gt; &lt;Storyboard&gt; &lt;DoubleAnimationUsingKeyFrames Storyboard.TargetName="DisabledVisualElement" Storyboard.TargetProperty="(UIElement.Opacity)"&gt; &lt;SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/&gt; &lt;/DoubleAnimationUsingKeyFrames&gt; &lt;/Storyboard&gt; &lt;/vsm:VisualState&gt; &lt;/vsm:VisualStateGroup&gt; &lt;vsm:VisualStateGroup x:Name="FocusStates"&gt; &lt;vsm:VisualState x:Name="Focused"&gt; &lt;Storyboard&gt; &lt;DoubleAnimationUsingKeyFrames Storyboard.TargetName="FocusVisualElement" Storyboard.TargetProperty="(UIElement.Opacity)"&gt; &lt;SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/&gt; &lt;/DoubleAnimationUsingKeyFrames&gt; &lt;/Storyboard&gt; &lt;/vsm:VisualState&gt; &lt;vsm:VisualState x:Name="Unfocused"/&gt; &lt;vsm:VisualState x:Name="FocusedDropDown"&gt; &lt;Storyboard&gt; &lt;ObjectAnimationUsingKeyFrames Duration="00:00:00" Storyboard.TargetName="PopupBorder" Storyboard.TargetProperty="(UIElement.Visibility)"&gt; &lt;DiscreteObjectKeyFrame KeyTime="00:00:00"&gt; &lt;DiscreteObjectKeyFrame.Value&gt; &lt;Visibility&gt;Visible&lt;/Visibility&gt; &lt;/DiscreteObjectKeyFrame.Value&gt; &lt;/DiscreteObjectKeyFrame&gt; &lt;/ObjectAnimationUsingKeyFrames&gt; &lt;/Storyboard&gt; &lt;/vsm:VisualState&gt; &lt;/vsm:VisualStateGroup&gt; &lt;/vsm:VisualStateManager.VisualStateGroups&gt; &lt;Border x:Name="ContentPresenterBorder"&gt; &lt;Grid&gt; &lt;ToggleButton HorizontalAlignment="Stretch" Margin="0" x:Name="DropDownToggle" Background="white" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" HorizontalContentAlignment="Right"&gt; &lt;Path Height="8" HorizontalAlignment="Center" Margin="0,0,0,0" x:Name="BtnArrow" Width="10" Stretch="Uniform" Data="F1 M 301.14,-189.041L 311.57,-189.041L 306.355,-182.942L 301.14,-189.041 Z "&gt; &lt;Path.Fill&gt; &lt;SolidColorBrush Color="#104F9B" x:Name="BtnArrowColor"/&gt; &lt;/Path.Fill&gt; &lt;/Path&gt; &lt;/ToggleButton&gt; &lt;ContentPresenter Visibility="Collapsed" HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" Margin="{TemplateBinding Padding}" x:Name="ContentPresenter" VerticalAlignment="{TemplateBinding VerticalContentAlignment}"&gt; &lt;/ContentPresenter&gt; &lt;/Grid&gt; &lt;/Border&gt; &lt;Rectangle x:Name="DisabledVisualElement" IsHitTestVisible="false" Opacity="0" Fill="#A5FFFFFF" RadiusX="3" RadiusY="3"/&gt; &lt;Rectangle x:Name="FocusVisualElement" IsHitTestVisible="false" Opacity="0" Stroke="#FF45D6FA" StrokeThickness="1" RadiusX="3" RadiusY="3"/&gt; &lt;Popup x:Name="Popup"&gt; &lt;Popup.RenderTransform&gt; &lt;TranslateTransform X="-125" /&gt; &lt;/Popup.RenderTransform&gt; &lt;Border Height="Auto" HorizontalAlignment="Stretch" x:Name="PopupBorder" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" CornerRadius="3"&gt; &lt;Border.Background&gt; &lt;LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0"&gt; &lt;GradientStop Color="#FFFFFFFF" Offset="0"/&gt; &lt;GradientStop Color="#FFFEFEFE" Offset="1"/&gt; &lt;/LinearGradientBrush&gt; &lt;/Border.Background&gt; &lt;ScrollViewer x:Name="ScrollViewer" BorderThickness="0" Padding="1"&gt; &lt;ItemsPresenter/&gt; &lt;/ScrollViewer&gt; &lt;/Border&gt; &lt;/Popup&gt; &lt;/Grid&gt; &lt;/ControlTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; </code></pre> http://stackoverflow.com/questions/1562236/resizing-silverlight-app-to-its-current-size-bigger-than-screen 0 resizing Silverlight App to its current size (bigger than screen) Gabriel Guimarães 2009-10-13T18:54:00Z 2009-10-24T13:20:14Z <p>Hi,</p> <p>Let me clarify what silverlight is doing:</p> <p><img src="http://i.msdn.microsoft.com/Cc645025.ChildElement%5FClipped%28en-us,VS.95%29.png" alt="Silverlight Clipping" /></p> <p>and I want to get the complete size to resize my silverlight, but I can't does anyone knows a way to get the full size of my controls and resize the div?</p> <p>I have a silverlight App inside on a Page and when I create the controls the silverlight app gets bigger than the screen resolution, but I didn't want any silverlight scrolls on the page (requirement) so I need to re-size the div containing the silverlight app, and I did that on the code bellow, however it just didn't work out, because it only re-sizes to the size of the resolution not any bigger and my screen still get's the silverlight scroll bar, I'm thinking this is because of the <a href="http://msdn.microsoft.com/en-us/library/cc645025%28VS.95%29.aspx" rel="nofollow">Silverlight Layout System</a> but I'm looking for the scroll bar to be gone. Any Helps???</p> <pre><code>private HtmlElement div = HtmlPage.Document.GetElementById("SilverlightContent"); public Page() { InitializeComponent(); this.SizeChanged += new SizeChangedEventHandler(Page_SizeChanged); } void Page_SizeChanged(object sender, SizeChangedEventArgs e) { resizeDiv(e.NewSize.Width, e.NewSize.Height); } internal void resizeDiv(Double Wsize, Double Hsize) { div.SetStyleAttribute("width", Wsize + "px"); div.SetStyleAttribute("height", Hsize + "px"); } </code></pre> http://stackoverflow.com/questions/1588348/silverlight-2-zindex-issue-on-asp-net-page-ie6 0 Silverlight 2 Zindex Issue on ASP.NET Page IE6 Gabriel Guimarães 2009-10-19T12:14:11Z 2009-10-24T13:13:42Z <p>I Have a Silverlight Menu on a ASP.NET page, on this page bellow the menu there's a Html Table and bellow the table there's a dropdownlist.</p> <p>The silverlight DIV is position: absolute; z-index: 999; The silverlight App is designed with zindex in its elements, is windowless, and background transparent.</p> <p>This Works fine on Firefox however in IE6 (requirement) it doesn't work, the silverlight gets bellow the html table and dropdownlist</p> <p>Any help would be appreciated.</p> <p>Thanks Gabriel</p> http://stackoverflow.com/questions/325654/change-background-color-of-datagrid-header-in-silverlight-2-0-rtw 3 Change background color of Datagrid Header in Silverlight 2.0 RTW SKiran 2008-11-28T12:26:40Z 2009-10-23T15:51:13Z <p>I want to change background color of Datagrid header in Silverlight 2.0 RTW </p>