Advanced Forum Search Results
-
Hi Jonathan, I've tried with VisualTreeHelper by puting the textblock into a stackpanel, but that does not work.
Here is my new XAML :
<my1:DataGrid x:Name="GridOuvrage" Canvas.Top="190" Width="500" Height="100" ...
-
Hi,
I'm very surprise to not find the SelectedValue and SelectedValuePath properties in the new ComboBox control. Why this missing and how to do to databind it ?
-
Hi,
When a frensh version of the silverlight tools for VS2008 will be available ?
-
Hi,
Here is my XAML :
<my1:DataGrid x:Name="GridOuvrage" Canvas.Top="190" Width="500" Height="100" AutoGenerateColumns="False">
<my1:DataGrid.Columns>
<my1:DataGridTextColumn x:Name="Col1" Header="Partie d'ouvrage" Visibility="Visible" ...
-
ausi1, I've tried but the problem is always the same
-
Hi,
The .net web service method has the following signature :<WebMethod(EnableSession:=True)> _
Public Function WebMethod1(ByRef tabSql As List(Of String)) As Boolean
The Silverlight's code which calls this web method is like this :Dim _proxy As New LocalService.Service1SoapClient
Dim tabSql As List(Of String) = New ...
-
Thank you Keith, with your solution I get the order of events that I want. But could you give me more explanations about it because I don't really understand ? And why the default order of events is not the same as WPF Application ?
Still thank you
-
Hi,
I have several controls vertically contained inside a stackpanel. When I apply a ScaleY of 0.5 to the controls, I would like the stackpanel takes into account the new size of them. But it's not the case and the stackpanel maintains spaces between the controls related to their original height. How can I change this behavior ? Is ...
-
Thank you for your interest Keith.
Yes, this is causing me a problem because I am writing a class library (extended base controls) which is changing the content of the application's controls. For example, the click on an extended button is running some code. Between the beginning of the click event and it's end, the text property of ...
-
OK Kunal, here is the C# version :
Page.xaml :
<UserControl x:Class="SilverlightApplication7.Page"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Width="400" Height="300">
<Canvas ...