Advanced Forum Search Results
-
Thanks for your reply !
i know how to install the dll
i mean when start the blend, then choice "new a project", blend will show 4 kinds of the project.
1. WPF application....
2. WPF control ....
3. silverlight1....
4. silverlight2
and now, i want to add the 5 choice, my own creat project model
how to do this ...
-
Hi, every one :
i read this http://www.codeplex.com/colorful, i have 2 questions
1. when we start the blend, then choice new project, it have 4 kinds of the project, may i add a new project !?
2. also start the blend, open project ( path at ==> D:\test_1 ). Then start another blend, open project ( path at ==> ...
-
Hi, surbhiydv :
you are right, can use event to handle the button's click event, then control it in the .cs
but the part i don't understand is, it just can control the component that you press, right ?!
how to control other ?!
like the code, i press the button "btn1", i can control the button, how to control the ...
-
Hi, surbhiydv :
Thx for your reply, do you mean like this ?
public event EventHandler btn1_ClickEvent;
private void btn1_Click( object sender, RoutedEventArgs e )
{
if( btn1_ClickEvent != null )
btn1_ClickEvent( this, EventArgs.Empty );
}
can you tell me more, thx.
-
Hi, everyone :
Just like subject said, how to get the component in datagrid ?
like this
<my:DataGrid x:Name="myDataGrid" Width="250" Height="250" HorizontalAlignment="Left" VerticalAlignment="Top" Visibility="Visible" Margin="5,5,5,5" Grid.RowSpan="2" ...
-
i read this blog
http://worksightblog.com/?p=72#comments
i have 2 pages, 1 my data class, is someone know how to bind data like this
it's my data class
public class Customer
{
public Customer( object name, object like, object food )
{
Name = ...
-
This is great !!
Thanks
-
thanks for your reply
i did nothing, just to get the row data, like this
void Button2ClickEvent( object sender, EventArgs e )
{
object obj = List.DataGrid_OMUSABaseBallGame_A.SelectedItem;
}
nomater i press buttn 1 or 2, always get row 1's data
-
Hi, everyone :
i read this blog :http://blogs.msdn.com/deepak_verma/archive/2008/07/19/dynamic-creation-binding-of-silverlight-datagrid.aspx
it's work fine !
but, how to add other kind the component, like listbox.
And another question, i have ask already, but i still don't get it.
when i use datagrid like this, i don't ...
-
sorry, can't work >"<
plz, someone help me !!!
and why i can find the myDataGrid in page.cs, but can't find myList_1 & myList_2