Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
private string s;
public ChildForm( string s2 ){
InitializeComponent();
s = s2;
}
private string s;
public void SetField( string s2 ) {
s = s2;
}
ChildForm cs = new ChildForm();
cs.SetField( "something" );