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.
我在 WPF 中使用动态数据显示库。我有我的 LineGraph 链接到我的海图仪。当我启动应用程序时,我可以在绘图仪中看到它。
我想知道在应用程序运行时是否可以更改该线图的不透明度。
是的,您可以,例如,您可以使用滑块。当用户移动滑块时,它会改变线图的不透明度(带有事件、绑定...):
line.LinePen.Opacity = slider.Value;