Advanced Forum Search Results
-
But some classes for decoding looks like from .Net framework, for example:
BinaryMessageEncodingBindingElement and HttpTransportBindingElement
Frank Wu
-
Binary XML support is a ew feature in SL3, it enables Silverlight to communicate with Windows Communication (WCF) services using the Binary XML data format in addition to regular text XML. But the problem is that we need make sure if it's ready WCF in client side, my question is how to detect WCF in client, if windows xp sp2 or ...
-
1. The Silverlight text elements can use the following Latin fonts if available on the local computer:
Arial
Arial Black
Arial Unicode MS
Calibri
Cambria
Cambria Math
Comic Sans MS
Candara
Consolas
Constantia
Corbel
Courier New
Georgia
Lucida Grande/Lucida Sans Unicode
Segoe ...
-
Please make sure only Glyph element can use local font in SL 3, not TextBlock, how about label control?
-
Only for Glyph element, not for TextBlock.
I hope it can support TextBlock in next SL version, and it can work with c#.Net, not only javascript.
-
For my understanding, only "Glyph" element can use local font, not for "TextBlock"?
-
Use Javascript is a solution, but it is not a good solution for my case.
For example, there are many textblock objects in Xaml file which be generated by another tool, some select "Arial" font, some select "Arial Narrow" font, I can't add "Arial" and "Arial Narrow" into xap or zip file, the reason ...
-
Using local font is a new feature in SL 3.0, my question is:
First, how to check the font whether native build-in Silverlight 3.0?
Second, if it don't native build-in Silverlight 3.0, then how to use local font, and how to check the font whether support by local.
I donot want to embed too many fonts in xap file.Frank Wu
Survalent ...
-
Yes, I changed the value in Web.Config, but still doesn't work.
Right now I fixed the problem, just changed the code in client side:BinaryMessageEncodingBindingElement binary = new BinaryMessageEncodingBindingElement();HttpTransportBindingElement transport = new HttpTransportBindingElement();
transport.MaxReceivedMessageSize = ...
-
Use WCF to loading xaml file, but got exception for buffer size
I’d like to use SL 3.0 Binary XML new feature dynamically to load Xaml files, but I got exception for buffer size:The maximum message size quota for incoming messages (65536) has been exceeded. To increase the quota, use the MaxReceivedMessageSize property on the appropriate ...