Skip to main content

Microsoft Silverlight

Advanced Forum Search Results

  • Re: Re: Drag and Drop oddness

    No, the drag behaviour did not fail.  I boud the DragDrop.AllowDrop value to a property on an object. When that value was dynamically set the drag capability still worked but teh drop capability never did, so the mouse would carry around the object with no where to drop it.  Only once I clicked changed an object that would set the ...
  • Drag and Drop oddness

    I have a list box in a drag and drop target control.  The drag drop target's AllowDrop property is bound to a property on the parent object. if the object is locked I dont want to allow drag and drop and if it isn't I do want to allow it. Seems simple enough, and it works. Mostly... On the capture it wants to hang on to the item ...
  • Re: quad shape

    PathGeometry _g = new PathGeometry(); Path _p = new Path(); PathFigure _pf = new PathFigure() { StartPoint = new Point(0, 0) }; _pf.Segments.Add(new LineSegment() { Point = new Point(1, 1) }); _pf.Segments.Add(new LineSegment() { Point = new Point(1, 2) }); ...
  • Global changes to controls in an application

    I think I know the answer to this but thought I'd ask anyway. Is there to a way to globally change all styles for a given control throughout an entire application? I do a lot of customization of styles for particular elements, buttons etc.  However, I'd like to make one global change to the scroll bars for the entire ...
  • Re: Re: Open Outlook perhaps using Mailto:

     I found a solution to this problem.   Replace the hash tag # with %23  this handles the Url Encoding issue when sending Urls for deep linking in SL. 
  • Re: Re: Silverlight not working Sometimes

    After some further digging, that was it.  I manage the ZIndex now when the states change to handle what can work and what can't work.  Thanks for the suggestion, been struggling with this for a week or so now.  
  • Re: Re: Silverlight not working Sometimes

     Close to the same resolution, however the control that the users interact with both render and show, but only 'work' for some users. 
  • Silverlight not working Sometimes

     I have a silverlight application that I've built that runs locally and also runs for me on the web server to which it's deployed.  It also runs for our sys admins.  However, when a user attempts to view the page it loads as expected, renders as expected but doesn't 'interact' with the user. No click events, ...
  • Re: Re: Open Outlook perhaps using Mailto:

     I'm trying to utilize this for email a 'deep' link in a SL3 application and am getting some odd results.     UserTrainingItem _t = this.DataContext as UserTrainingItem; string _body = string.Format("Check out this training item!{0}{1}", "%0A%0a", _t.QuickLinkPath); Uri _email = new ...
  • Re: Why wont this work?

     NM, I guess I was relying on the refactoring of the c# to affect the xaml. Not the case.  I was a property name issue. On a related note though. This doesnt give me the nice line that I am looking for.  I'd like a nice bezier style line to be drawn. What do I need to do to achieve this. 
1 2 3 4 5 Next >
Microsoft Communities