gpt4 book ai didi

c# - ZedGraph 调整大小?

转载 作者:行者123 更新时间:2023-11-30 20:11:45 26 4
gpt4 key购买 nike

如何访问调整图形 Pane 大小时触发的事件?

每次调整大小后,我想固定标题和标签上的文本大小,这样当窗口最大化时它们就不会变大。

最佳答案

你可以订阅ZedGraphControl的resize事件:

zg1.Resize += new EventHandler(zg1_Resize);

但是通过在 GraphPane 上禁用自动字体缩放更容易实现你想要的:

zg1.MasterPane[0].IsFontScaled = false;

如果您的 MasterPane 上有多个 GraphPane,请使用:

 foreach(GraphPane pane in zg1.MasterPane.PaneList)
pane.IsFontScaled = false;

另见:
http://zedgraph.org/wiki/index.php?title=How_does_the_font_and_chart_element_scaling_logic_work%3F http://zedgraph.sourceforge.net/documentation/html/P_ZedGraph_PaneBase_IsFontsScaled.htm

关于c# - ZedGraph 调整大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3321718/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com