Click here to Skip to main content
15,887,175 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi how change property of controls (for example panel or label) in stimul report like send parammettr . for example change with panel or font?
Posted
Comments
BillWoodruff 11-Sep-11 12:49pm    
What is a "stimul" report ? And, by "report" do you mean something printed ? WinForms or WPF or ?
javad_r_85 11-Sep-11 14:27pm    
What is a "stimul" report ?

http://www.stimulsoft.com/

1 solution

In general, .NET framework class provides the control to change the property. As an example, Label control's text can be modified using Text property.
C#
Label1.Text = "...";


.NET provides the appropriate event to handle it. In this example, when the user changes the text content of Label, it will trigger a control and its delegate is:
C#
public void Label1.OnTextChanged(object sender, RoutedEventArgs e)


But, your code uses the custom controls from stimulsoft. Mostly, it will support .NET framework base property and methods. For any particular control/property, you can check with them.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900