質問編集履歴
2
修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -31,7 +31,7 @@
|
|
31
31
|
|
32
32
|
###試したこと
|
33
33
|
他クラスで
|
34
|
-
this.
|
34
|
+
this._Flg = false;
|
35
35
|
|
36
36
|
とするとthisを含んでいるのでエラーとなります。
|
37
37
|
|
1
ソース追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -22,7 +22,13 @@
|
|
22
22
|
set { this._Flg = value; }
|
23
23
|
get { return this._Flg; }
|
24
24
|
```
|
25
|
+
デフォルト表示のカラム設定を行うクラスでこのフラグをtrueに固定しなくてはいけないため、他クラスからあるペー儀からのみfalseにしなければなりません。
|
26
|
+
固定してあるソースは
|
25
27
|
|
28
|
+
this._Flg = true;
|
29
|
+
if (this._Flg.HasValue) this._SearchReg.Flg = this._Flg.Value;
|
30
|
+
if文は他の動作をした時に値を返す用です。
|
31
|
+
|
26
32
|
###試したこと
|
27
33
|
他クラスで
|
28
34
|
this._DisposeFlg = false;
|