Advanced Forum Search Results
-
Is it possible to change the foregroud for the textblock in code-behind ???
Thank you in advance !
-
This property is for retrieve or assign the format that is used to display the selected date.
In my case, when the user enter 260209, my datepicker set the selected date at today automaticely.
I would like to have 26/02/2009 (long or short) but the date which is entered by the user.
-
Hi all,
I'm using several datepicker under SL2. I would like to know if it was possible to set an inputmask for this control.
For example, when the user write 260209, or 26.02.09 -> 26/02/2009 for the selected date in control.
Thank you in advance.
Johan
-
Thank your for your answer.
Another solution...
Johan
-
Thank you for answers. I found a solution with mouse event.
void dgPlan_LoadingRow(object sender, DataGridRowEventArgs e)
{
e.Row.MouseEnter += new MouseEventHandler(Row_MouseEnter);
}
void Row_MouseEnter(object sender, MouseEventArgs e)
{
dgr = (DataGridRow)sender;
}dgr is a datagridrow. and after, I use it to find the ...
-
Hey,
In my datagrid, I can select a row when I click. It's ok and I can retrieve row with selecteditem
but when my mouse is over the datagrid and over a row (without click), this row is highlighted : how can I retrieve this row ???
Thank you in advance.
Johan
-
Hi all,
I have a datagrid with three columns : name, yes and no
Columns yes and no are like :
<data:DataGridTemplateColumn Header="Acquis">
<data:DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<CheckBox x:Name="cbAcquis" Content="" IsChecked="{Binding ...
-
thank you for your answer.....
But it doesn't work.... it open a new windows http://localhost...Excel/test.xls..
or this page doesn't exist.... so I have the classic error page....
I would like to have a link to download the file, like like on website to download source code for example...
Johan
-
Hey all,
In my silverlight project, I have a directory which contains a excel file....I would like donwload this file from my application (e.g. click on a button) like attachment.
I have tried System.Windows.Browser.HtmlPage.Window.Navigate(new Uri("//Excel//test.xls"), "_newWindow");
but Access Refused during the ...
-
hey blue skye,
look for xmlhttprequest on google...
link 1
link 2 it's in french but with google translator
Hope this help
Johan