towerbit
towerbit
#### 问题描述及重现步骤: Where() 中有 DateTime 类型会导致异常, 通过 fsql.ToSql()生成的SQL语句分析, 应该是对 Access 的 DateTime 类型的字段没有使用 ## 而是 '' 的缘故 #### 数据库的具体版本 ``` Access 2010 ``` #### 安装的包 ``` FreeSql 2.5.200 ``` ####...
跟踪代码,发现 btnStart_Click() 调用 Initialize() 时, var sipChannels = SIPTransportConfig.ParseSIPChannelsNode(account); 与 _messageCore.Start() 中 var sipChannels = SIPTransportConfig.ParseSIPChannelsNode(_LocalSipAccount); 这两个参数 account, _LocalSipAccount 是一样的, 导致 _messageCore.Start() 重复绑定了 UDP 5061
增加 TreeNode.PathSeparator 属性指定路径分隔符,默认为“\" 修改 TreeNode.FullPath 为只读属性,返回节点的完整路径
为 Control 基类添加只读属性 ModifierKeys,返回哪个修改键(Shift、Control 和 Alt)处于按下状态的值
为 TreeView 的成员 TreeNode 添加展开和收缩子节点的方法
添加一个 Form 的全屏属性,调用 Gtk 方法实现 FormBorderStyle.None + WindowState.Maximised
为 Form 添加 TopMost 属性,设置或返回窗口是否保持置顶
增加 Control 和 Form 触发事件的保护方法 修改 部分属性的实现
因为 FormBase 是基于 Gtk.Dialog 的,所以按下 ESC键会导致窗口关闭。 我试图在窗体的 KeyPressEvent 中捕获 ESC键按下的事件,但是不成功,这个问题有什么好的解决办法吗? 我试过从 Gtk.Window 继承 FormBase,可以回避ESC键关闭的问题,但是加载其他控件没有成功,只能显示空的窗口。
对话框中通过 ESC 或者 关闭按钮关闭时,返回 DialogResult.None 与 WinForms 中行为不一致 建议优化 MessageBox.cs ==== private static DialogResult ShowCore(IWin32Window owner, string text, string caption, MessageBoxButtons buttons, MessageBoxIcon icon, MessageBoxDefaultButton defaultButton, MessageBoxOptions options, bool showHelp)...