nature_net.window_manager.close_signup_window C# (CSharp) Метод

close_signup_window() публичный статический Метод

public static close_signup_window ( window_frame frame, string username ) : void
frame nature_net.user_controls.window_frame
username string
Результат void
        public static void close_signup_window(window_frame frame, string username)
        {
            signup_frames.Remove(frame);
            main_canvas.Children.Remove(frame);
            highlight_timer = new System.Threading.Timer(new System.Threading.TimerCallback(highlight_callback_users_t), username, 100, System.Threading.Timeout.Infinite);
        }