예제 #1
0
 public static void unsetGreetingButton()
 {
     try{
         button.stopDrag();
     }catch (System.NullReferenceException ex) {
     }
     button = null;
 }
	public static void unsetGreetingButton(){
		try{
			button.stopDrag();
		}catch(System.NullReferenceException ex){

		}
		button = null;
	}
예제 #3
0
 public static void setGreetingButton(GreetingButtonController btn)
 {
     button = btn;
 }
	public static void setGreetingButton(GreetingButtonController btn){
			button = btn;
	}