Advanced Forum Search Results
-
but that is just for checkbox column...it dont have DataGridComboBoxColumn...
becoz i need to build the datagrid under fully programmatic...included the datagrid...
therefore i can't finish it with xaml...
my code:
this.RuleList.Columns.Add(new DataGridTemplateColumn { ...
-
<DataTemplate>
<ComboBox x:Name="myComboBox" Loaded="myComboBox_Loaded"></ComboBox>
</DataTemplate>for this part...how can i change to C# code? as i have to do it using C#
-
Hi, I would like to know how can i fully code it with C# include the DataGridTemplateColumn??
I got the solution, just ignore this.
http://blogs.msdn.com/scmorris/archive/2008/04/14/defining-silverlight-datagrid-columns-at-runtime.aspx
-
actually i m trying to create a room booking schedule with the grid function...it will popup the menu for selection
here is the error after clicking the menu...the details is not available to copy n to long for me to type it out...
-
if just created a menu like this:
ListBox lb = new ListBox();
Menu.Child = ...
-
those are the static string preset for the menu.
-
if just created a menu like this:
ListBox lb = new ListBox();
Menu.Child = ...
-
I am trying to use the grid to create a schedule, how can i make the grid boxes merge together when the appointment is more than a box?
-
Thanks for reminding me the Eval function.
-
I know the method from the MSDN ~ Walkthrough: Calling JavaScript from Managed Code
http://msdn.microsoft.com/en-us/library/cc221359(VS.95).aspx
but I still wanna know is there any method to calling javascript fully from the C# ??
I mean...is there any method to add the Javascript code or attach the Javascript method into the HTML through C# ...