Advanced Forum Search Results
-
Hello, this is a known issue in the Azure portal. Our portal engineers are working on a fix.
-
Hello, thanks for reporting the problems.
To workaround the first issue, you can use the Explicit UpdateSourceTrigger:
Text="{Binding Mode=TwoWay, Path=ClientName, UpdateSourceTrigger=Explicit}"
And in the TextBox's LostFocus event:private void TextBox_LostFocus(object sender, RoutedEventArgs e)
{TextBox tb = (TextBox)sender; ...
-
Hello, thanks for reporting this issue. I will forward it to the Toolkit team.
As a workaround, you can use Expression Blend to edit the template of the Expander. Find the ExpandRight visual state, and set the ExpanderButton's ScaleTransform.ScaleX to -1.
-
Hello, I wonder why you need BitConverter. This code will give you better performance:
Sender:StringBuilder sb = new StringBuilder();
//source is a double array.for (int i = 0; i < source.Length; i++)
{
sb.Append(source[ i ].ToString());sb.Append(',');
}
//Remove the last ,
sb.Remove(sb.Length - 1, ...
-
Hello, while RIA Services is stateless, cache is not. In-memory cache is stored in HttpRuntime.Cache, which is static. It won't be disposed when a request ends. It is disposed when it timed out. Unless your server is load balanced, in-memory cache should work fine for you.
-
Hello, I don't know if there're any better solutions. But here's one possible solution:
In Gloabal.asax, in Session_Start, add the session to a dictionary:public static Dictionary<string, HttpSessionState> Sessions = new Dictionary<string,HttpSessionState>();protected void Session_Start(object sender, EventArgs e) ...
-
Hello, I think this is a known issue related to Add/Update Service Refence. Visual Studio is referencing Silverlight 2 SDK rather than Silverlight 3 SDK. You can uninstall the SL 2 SDK to solve this problem. Refer to http://blogs.msdn.com/jamlew/archive/2009/03/18/silverlight-3-tools-issue-new-wcf-template-is-broken-by-silverlight-2-sdk.aspx for ...
-
Unfortunately Silverlight 3 will not ship a built-in RichTextBox. We're considering to support it in SL 4. But I can't assure you anything at this time...
-
Sorry at this time I can't assure you whether managed code will be supported or not in final SL3...
-
Hello, first of all, you need a cross domain policy file. Please refer to http://msdn.microsoft.com/en-us/library/dd470115(VS.96).aspx.
Now since the Silverlight application is not hosted on the same domain as the service, you can't use a relative URI. Please use an absolute URI.
As long as the cross domain policy file and the URI is ...