摘要: class StringListModel(QAbstractListModel): def __init__(self, parent=None): super(StringListModel, self).__init__(parent) def data(self, index, role): 阅读全文
posted @ 2022-04-17 13:11 ppaw 阅读(100) 评论(0) 推荐(0)
摘要: 微软的文档中说: An application cannot force a window to the foreground while the user is working with another window. Instead, Windows flashes the taskbar bu 阅读全文
posted @ 2020-08-29 01:56 ppaw 阅读(842) 评论(0) 推荐(0)
摘要: private void Form1_FormClosing(object sender, FormClosingEventArgs e) { this.WindowState = FormWindowState.Minimized; e.Cancel = true; } 阅读全文
posted @ 2020-08-14 15:02 ppaw 阅读(653) 评论(0) 推荐(0)