1
using
system;
2using
system.drawing; 3
using
system.collections; 4
using
system.componentmodel; 5
using
system.windows.forms; 6
using
system.data; 7
using
system.runtime.interopservices; 8
9namespace
demo 10
17 18
public
delegate
bool
callbackfunction(intptr hwnd, intptr lparam); 19
20[dllimport(
"user32.dll"
, charset=charset.auto)] 21
public
static
extern
intptr findwindow(
string
lpclassname, 22
string
lpwindowname); 23
24[dllimport(
"user32.dll"
, charset=charset.auto)] 25
public
static
extern
bool
enumthreadwindows(
intthreadid, callbackfunction funptr, intptr lparam); 26
} 27
28public
class
form1 : system.windows.forms.form 29
42 43
protected
override
void
dispose(
bool
disposing ) 44
51}
52base
.dispose( disposing ); 53
} 54
55private
void
initializecomponent() 56
125#endregion
126127
[stathread]
128static
void
main()
129132
133private
void
btnmethod1_click(
object
sender, system.eventargs e)
134139
140private
void
btnmethod2_click(
object
sender, system.eventargs e)
141148
149private
bool
_isfind =
false;
150private
void
btnmethod3_click(
object
sender, system.eventargs e)
151166}
167
168if
(!_isfind) messagebox.show(
"failure!"
,"method3");
169}
170171
172private
void
btnmethod4_click(
object
sender, system.eventargs e)
173182
183private
void
btnmethod5_click(
object
sender, system.eventargs e)
184187
188private
bool
callbackmethod(intptr hwnd, intptr lparam)
189194
195}
196}
根據Gridview列事件引數得到該行物件
1 gridview1 rowcommand object sender,gridviewcommandeventargs e 中根據gridviewcommandeventargs e得到該行物件gridviewrow gridviewrow linkbutton e.commandsource ...
窗體之間呼叫方法,引數等。(傳窗體引用)
以下 實現 b窗體呼叫a窗體的方法。其實就是傳 this 窗體a public partial class forma form public void aaa private void button1 click object sender,eventargs e 窗體b public parti...
c 怎麼擬合函式得到引數 為啥正則化能抑制過擬合
正則化是抑制模型過擬合的重要方法。它的原理到底是啥,今天我來分析一下。首先,以線性回歸為例,沒有正則化的情況,它的損失函式是平方損失函式。損失是越小越好,如果擬合函式h越複雜,就越可能把損失擬合到0。那麼很顯然,就會發生過擬合。熟悉吧,我們的模型因為太逼近訓練樣本,反而損失了泛化能力,這個對於模型是...