s***h 发帖数: 88 | 1 Hi I am writing a Pocket PC 2002 smart device program in Visual Studio .Net
2003/C#. There is a program that I do not quite understand.
The structure of my program:
Form1 (main form):
_Click(sender, e)
{
Form2 f2 = new Form2();
f2.show();
}
Form2:
_Click(sender, e)
{
Form3 f3 = new Form3();
f3.show();
}
After the program open the Form3, I clicked on the OK button at the top-right
corner of the form. Form3 was closed, and then I closed Form2 and Form1.
After all that, I found another Form1 was | e*********s 发帖数: 200 | 2 thats the expected/intended behavior of pocket pc "smart close" feature.
top-right
the
【在 s***h 的大作中提到】 : Hi I am writing a Pocket PC 2002 smart device program in Visual Studio .Net : 2003/C#. There is a program that I do not quite understand. : The structure of my program: : Form1 (main form): : _Click(sender, e) : { : Form2 f2 = new Form2(); : f2.show(); : } : Form2:
| s***h 发帖数: 88 | 3 Thanks. So there is nothing to worry about?
.Net
window,
were
much!
【在 e*********s 的大作中提到】 : thats the expected/intended behavior of pocket pc "smart close" feature. : : top-right : the
|
|