Advanced Forum Search Results
-
Hi,
I dont think this is possible in the current beta version. I have been looking for some way of getting the cursor position myself but have come up against a brickwall, there doesn't seem to be any properties or methods that allow you to read information about the cursor or indeed control it. It would also be nice to ...
-
Hi,
You can achieve refections using a pixel shader, here is an article that should help you:
http://cellbi.com/Content/UI/Views/BlogItem.aspx?page=661&AspxAutoDetectCookieSupport=1
-
Hi there,
Yes I'm sure there are some strange effects when clicking on text, which I couldn't reproduce by the way. This is just a bit of free demo code meant to point developers in the right direction with this SL4 control. Good look with writing your own html extension for the RichTextArea, its a really easy ...
-
Update: An image can be inserted by placing it into a InlineUIContainer element.
-
Hi,
There is an extended version of the RichTextArea that can do basic HTML saving/loading at:
http://www.vectorlight.net/controls/html_richtextarea.aspx
-
Hi Rick,
Good question, I've been looking for a way to insert an image and, at the moment am quite baffled by how it is meant to be done. We need Microsoft to give us a proper demo of this control rather than the very basic video demo available. Maybe someone else out there has managed to insert an image?
-
Hi,
This isn't an easy one I'm afraid. As you've found out an element can only be present in the visual tree once. To achieve what you are trying to do you need to create a new instance of each element along with any properties that are not default.
-
TextAlign = Justify
Running Silverlight In-Browser apps in Elevated Permissions mode
-
Hi,
You can use the Canvas.ZIndex property to control rendering order. So give the Rectangle a ZIndex value of 1 and the image 0. Then use the mouse button down and move events to enable the dragging, There is a tutorial here about dragging and dropping that may help:
http://www.vectorlight.net/tutorials/drag_and_drop.aspx
-
Hi,
Not unless you iterate through the Canvas.Children collection and disable them 1 by 1. Perhaps you could wrap your Canvas in a ContentControl and use the IsEnabled property on that which will cascade down to the child controls?