Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在将 PDFtron 用于 Win 10 应用程序。我正在构建用于绘图和文本的自定义内部工具。我知道我有控制权,但我更喜欢自己构建。我知道在执行示例并使用触摸模式绘制一条线时,pdf 控件不会翻转页面,因为它已被锁定。我试图调查这是如何发生的,但我在控件示例项目中的任何地方都看不到它。有人知道如何在触摸绘图时锁定控件吗?
问候。
所以这成功了......
internal void UnFreeze() { _pdfViewer.SetZoomEnabled(true); _pdfViewer.SetScrollEnabled(true); } public void Freeze() { _pdfViewer.SetZoomEnabled(false); _pdfViewer.SetScrollEnabled(false); }