New answers tagged silverlight-5.0
0
This helps in situations with TextBox and FlowDocument controls, but I'm not sure if it will help with your DataGrid. It's worth a shot.
You can try hooking into the PreviewDragEnter and PreviewDragOver (and maybe PreviewDrop) events, like below.
The key here is to set the event to Handled to keep the control from doing its shenanigans.
Something like ...
0
I've come up with a workaround which performs exactly what I wanted (starts external browser and loads specific web site while posting some parameters to it). Instead of using WebBrowser control HTML file (similar as in the question) with Form and a JavaScript to submit the form onLoad event is generated. Then the generated HTML content is written into the ...
0
i am use LayoutUpdated event of gridview and reassign a property and it's working perfect but don't know is this right approach to do it or not
using System;
using System.Linq;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Media;
using Telerik.Windows.Controls;
using ...
0
after i am googling i found this are things:
To authenticate users faster in the domain
To authenticate resources(gps etc) faster for the users
Utilization of resources
Utilization of network and descreasing the overall traffic in the
network.
The main benefit is that of the users and passwords management, which
could grow to be massive amount of work ...
0
Officially, you will need to run the browser in elevated permissions in order to access private/protected members. With normal privileges reflection will only get you access to the members in the same assembly.
http://msdn.microsoft.com/en-us/library/stfy7tfc(v=vs.95).aspx
0
The problem is solved with the support of Telerik Team.
Here goes the code for the edited template of the RadPanelBar:
<telerik:Office_BlackTheme x:Key="Theme" />
<SolidColorBrush x:Key="ControlForeground_Normal" Color="#FF000000" />
<Style x:Key="RadPanelBarStyle" TargetType="telerik:RadPanelBar">
<Setter Property="ExpandMode" ...
0
I am very sorry. The correct answer is very plain and easy:
This works:
<EasingDoubleKeyFrame KeyTime="0:0:0.75" Value="{Binding RotationValue}"/>
This doesn't work:
<EasingDoubleKeyFrame KeyTime="0:0:0.75" Value="{Binding RelativeSource={RelativeSource Self}, Path=RotationValue}"/>
Setting the DataContext was correct:
...
0
I also think the answer is (at present) - no. But I also think the answer (in the future) should be - yes. It makes sense for a fully-trusted 'named' Silverlight application to run in-browser provided the user has agreed for this to be so (i.e. they are given the choice in a pop-up)
0
Within the drag operation you can set:
e.Handled = True
e.cancel = True
You can set these on drag over as well. But you can also do a similar thing within the drop operation.
0
The {Binding} does not automatically know where to locate ImagenSeleccionada.
You need to either link it to a specific element, typically your named user control:
<UserControl x:Name="ThisCtrl" .... >
<Image Source="{Binding ImagenSeleccionada, ElementName=ThisCtrl}" ... />
or explicitly set the DataContext of your user control to itself; ...
0
Microsoft XNA Game Studio 4.0 is not supported in the Microsoft Visual Web Developer 2010 Express product SKU. See the MSDN article from here, http://msdn.microsoft.com/en-us/library/bb203916.aspx, portions of which are copied here for your convenience.
Microsoft Visual Studio 2010
XNA Game Studio 4.0 Refresh leverages the Microsoft Visual Studio ...
0
Please Check this link http://www.c-sharpcorner.com/UploadFile/mamta_m/working-with-themes-in-silverlight-toolkit-C-Sharp-based/
It will provide you some help
public Page()
{
InitializeComponent();
Loaded += new RoutedEventHandler(Page_Loaded);
}
void Page_Loaded(object sender, RoutedEventArgs e)
{
Uri uri = new ...
0
The latest supported version for WCF RIA Services is Entity Framework 5. So i would not expect that this will work with EF 6.0.
1
I've used the code from your question to create a test rig, with a simple button etc - the following works fine:
private void Button_Click(object sender, RoutedEventArgs e)
{
var obj = new Class1 { Name = "abc" };
var raw = obj.GetSerializeByteArray();
var clone = raw.DeserializeByteArray<Class1>();
...
1
Answered similar question but for WP7 that should still apply as seen here =
How do I show multiple columns in a LongListSelector?
0
I had a similar problem after opening a Silverlight-based application in two instances of IE10 at the same time. I could not debug. After which, I had switched between Chrome and IE10 in order to try and solve the problem. I could debug in Chrome but not IE10. But Chrome was cumbersome to run for debugging purposes.
Ultimately, I had to remove all the ...
1
The return value of wcf.ReturnStringAsync(1) is, most probably, of type Task and not string.
Your SayHello sub should look something like:
Private Sub SayHello()
Dim wcf As New ServicioWCF_BD.ServicioBDClient
Dim message As String = wcf.ReturnStringAsync(1).Result
MessageBox.Show(message)
End Sub
Or, depending where you're calling it from:
...
0
XmlDataProvider is not supported in silverlight
0
This case is solved. What I needed to do, is not using DependencyProperties, but attached DependencyProperties.
The MenuItem of the DevExpress Silverlight menu now accepts Command and CommandParameter objects. The Command is triggered, when the LeftMouseButtonUp event is fired. The following is the working code. The XAML stays the same (see above). You just ...
0
Well, here is how I did to get the desired result :
List<MyData> lstData = new List<MyData>();
List<dynamic> lst = new List<dynamic>();
foreach (var item in lstData.Select(a => a.Date).Distinct())
{
dynamic obj = new ExpandoObject();
obj.Date = item;
...
0
The approach @Berryl gave above could work. But if you also need to get to the DependencyProperty, you can use something like this. This code also demonstrates the subtle differences between silverlight and WPF, but both can work great.
For silverlight or WPF only, you can remove the parts before or after the #else to simplify the code a little bit.
But ...
0
Besides making sure that the "DomainServiceModule" entries are present in Web.Config as stated above, another thing is that RIA requires ASP .NET compatibility mode to be enabled. Here is a link to Microsoft's deployment guide for RIA:
http://msdn.microsoft.com/en-us/library/ff426912(v=vs.91).aspx
In the third paragraph of the "Configure the Web Server" ...
0
<toolkit:Chart
x:Name="barStyledChart"
Foreground="#FF579ED4"
Style="{StaticResource GreenFxChartStyle}"
FontSize="8"
Width="290"
Height="170"
BorderThickness="0">
<toolkit:Chart.Axes>
...
0
It looks like svcutil try to verify some conditions before using the appropriate Serializer.
here are some details :
http://kjellsj.blogspot.com/2008/03/wcf-datacontractserializer-schema-rules.html
have you tried to force the serializer used by calling manually svcutil :
svcutil http://chronicpainhostservice2.cloudapp.net/Service1.svc
...
Top 50 recent answers are included

