本文介绍了位置的c#设置返回-32000的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在Settings.settings(app.config)中,我有一个位置点(100,10)的值。如果用户移动到新位置,则保存该值。但是,当c#代码读取app.config(包含正确的值)时,将为位置分配值:X = -32000,Y = -32000。如何修复
?
Location = Properties.Settings.Default.FGLocation;
rwb
解决方案
In Settings.settings (app.config), I have a value for Location point (100,10). If user moves to new location, that value is saved. However, when c# code reads app.config (contains correct values), Location is assigned values: X = -32000, Y = -32000. How can this be fixed?
Location = Properties.Settings.Default.FGLocation;
rwb
解决方案
这篇关于位置的c#设置返回-32000的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!