示例#1
0
 protected bool initDelegate()
 {
     try
     {
         //リフレッシュデリゲート
         reqReflesh = new LpsDelegate.dlgVoidToVoid(dlgReflesh);
         reqProcess = new LpsDelegate.dlgS1ToVoid(dlgProcess);
         return true;
     }
     catch (Exception err)
     {
         LpsLogControllerCus.writingLog(this.GetType().Name, MethodBase.GetCurrentMethod().Name, err.ToString());
         return false;
     }
 }
示例#2
0
        /// <summary>
        /// initDelegate
        /// delegateの初期化
        /// </summary>
        protected void initDelegate()
        {
            //セットテキストデリゲート
            reqSetTextTotalkWindow = new LpsDelegate.dlgS1ToVoid(dlgSetTextTotalkWindow);

            //セットロケーションデリゲート
            reqSetLocation = new LpsDelegate.dlgI5ToVoid(dlgSetLocation);

            //セットバックグラウンド
            reqSetBackGround = new LpsDelegate.dlgVoidToVoid(dlgSetBackGround);

            //コールブラウザ
            reqCallBrowser = new LpsDelegate.dlgVoidToVoid(dlgCallBrowser);
        }