Advanced Forum Search Results
-
bump
-
I just ran my app in FireFox and it rendered the same as IE. It might be some code in your xaml.
brad
-
Basically my post is exactly the same as Yi-Lun Luo - MSFT. Can you show the error that you are receiving?
brad
-
Hm, I'll email him and tell him.
brad
-
Yes you can do all of that. Silverlight is all run on the Client. It has most the events you need for DHTML OnMouseLeftUp/OnMouseLeftDown/MouseEnter/MouseLeave/MouseMove etc.
Silverlight cannot do context menus. It currently does not recognize the right mouse button.
To talk to the database you should use WCF. Since Silverlight is all client ...
-
Here's how I house a Silverlight Object in a page with a Master page.
<%@ Page Language="C#" MasterPageFile="~/MasterPages/SiteNoSideMenu.master" AutoEventWireup="true" %>
<%@ Register Assembly="System.Web.Silverlight" Namespace="System.Web.UI.SilverlightControls" ...
-
I've made what you have basically described. So here's how I've gone about doing some of these.
1. Add an Image to the children of your DesignCanvas and set its Canvas.ZIndex to 1.
2. http://michaelsync.net/2008/03/27/uploading-with-silveright-2-beta-1-and-wcf
3. Create UserControls for your Layers. I have made Image and Text. ...
-
I guess I have a few questions regarding Fonts and Streams.
Problem 1
I download a zip file of Fonts to my Silverlight client. I save this to a global Stream object. I reuse this Stream because the Client can create Text layers on the fly, and I reuse the Stream to create a FontSource for every new Text layer. Now this is where I run into a ...
-
http://silverlight.net/forums/t/12757.aspx
-
This seems to be a common question and one I've been asking about. This is what I've come up with. Hopefully this will help someone out.
I spent the last 3-4 days trying to figure out Upload in Silverlight 2 and WCF. I couldn't set the TransferMode for BasicHttpBinding on the Silverlight 2 client to Stream, and the Stream class ...