以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  tb.NeedSaveSetting = true 中的NeedSaveSetting是什么属性,帮助中没有  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=125766)

--  作者:百灵
--  发布时间:2018/10/6 13:52:00
--  tb.NeedSaveSetting = true 中的NeedSaveSetting是什么属性,帮助中没有
tb.NeedSaveSetting = true 中的NeedSaveSetting是什么属性,帮助中没有
--  作者:有点甜
--  发布时间:2018/10/6 14:18:00
--  

比如下面的代码,如果不设置属性为true,就不会保存设置。

 

Dim fd As New Windows.Forms.FontDialog
fd.Font = CurrentTable.Font
If fd.ShowDialog = DialogResult.OK Then
    CurrentTable.Font = fd.Font
    CurrentTable.NeedSaveSetting = True
End If