Advanced Forum Search Results
-
Hello,
How can I change resources from some control to another culture? for example: pt-BR?
For example: the ValidationSummaryControl has a string: "{0} Error" that are translated to the silverlight default cultures inside theirs resource DLL's, like "fr" (french) or "it" (italian). I'd like to create ...
-
Hello!
Look at this basic example:
<TextBox x:Name="textBox1" />
<TextBox x:Name="textBox2" />
var binding = new Binding("Text");
binding.Source = textBox2;
binding.Mode = BindingMode.TwoWay;
textBox1.SetBinding(TextBox.TextProperty, binding);
The binding works only in one direction. Why? ...
-
Solved,
Instead to pass an Uri I change to a BitmapImage and works.
Thanks
-
Pete,
Ok, I saw that if I set the Source directly works properly. My problem happens because I am setting through a Binding, look:
<Image Source="{Binding Thumbnail}" />
Where "Thumbnail" is an Uri property. The <Image /> controls is inside a <DataTemplate>, setting the "ItemTemplate" of ...
-
Hi Pete,
With <Image /> Control I'm getting an AG_E_NETWORK_ERROR.
Thanks,
Vítor
-
How I understood in MSDN documentation, to access a cross-domain resource, the policy file must be on the TARGET domain?
Thus, to show search resulted images I need to create a proxy in my domain?
I tried with WebClient and HttpWebRequest and had no success: Security Error.
Thanks,
Vítor
-
The test application:
http://www.acceptus.com/test
The policy files:
http://www.acceptus.com.br/clientaccesspolicy.xml
http://www.acceptus.com.br/crossdomain.xml
The sample cross-domain requested image:
http://www.popstarsplus.com/images/KatieHolmesPicture.jpg
I tried using WebClient and HttpWebRequest and had no ...
-
robhouweling,
Thanks, for reply!
Vítor
-
Hello all!
Considering the own secure logic, using asymetric algorithm (that Silverlight haven't, I know), and an information from user - a credential or a smart card.
Is memory used by Silverlight safe? what about in Linux/MoonLight?
Are the TextBoxes content safe? what about the AutomationPeer?
[quote ...
-
Hello!
There is in Silverlight need to prevent machine access? What about Automation Peer?
Thanks,
Vítor