コード例 #1
0
        private static void OnExportMessageBoxResult(
			 MessageBox _sender ,
			 MessageBoxStyle _result )
        {
            if (_sender.mEventMessageBoxResult != null)
                _sender.mEventMessageBoxResult(
                     _sender ,
                     _result );
        }
コード例 #2
0
 internal static BaseWidget RequestWrapMessageBox(BaseWidget _parent, IntPtr _widget)
 {
     MessageBox widget = new MessageBox();
     widget.WrapWidget(_parent, _widget);
     return widget;
 }
コード例 #3
0
 static void box_EventMessageBoxResult(MessageBox _sender, MessageBoxStyle _result)
 {
     Export.DebugOut("EventMessageBoxResult  _result=" + _result.ToString());
 }
コード例 #4
0
 internal static BaseWidget RequestCreateMessageBox(BaseWidget _parent, WidgetStyle _style, string _skin, IntCoord _coord, Align _align, string _layer, string _name)
 {
     MessageBox widget = new MessageBox();
     widget.CreateWidget(_parent, _style, _skin, _coord, _align, _layer, _name);
     return widget;
 }