如何在TabControl中复制"tabPage"?
我试过这个:
//My TabControl: tc
//My Tab ID: 0
TabPage newPage = new TabPage();
foreach (Control control in tc.TabPages[0].Controls)
{
newPage.Controls.Add(control);
}
tc.TabPages.Add(newPage);
Run Code Online (Sandbox Code Playgroud)
但是不起作用..
提前致谢.
这是我所拥有的:
import bz2
compressionLevel = 9
source_file = '/foo/bar.txt' #this file can be in a different format, like .csv or others...
destination_file = '/foo/bar.bz2'
tarbz2contents = bz2.compress(source_file, compressionLevel)
fh = open(destination_file, "wb")
fh.write(tarbz2contents)
fh.close()
Run Code Online (Sandbox Code Playgroud)
我知道bz2.compress的第一个参数是一个数据,但这是我发现来澄清我所需要的简单方法。
我知道BZ2File,但是我找不到使用BZ2File的好例子。
我们可以看到优秀的应用程序(例如 Slack 和 Insomnia)转向Electron,但是是否具有足够的安全性/稳定性来构建大型解决方案(例如 ERP)?谢谢。