Visual Studios 上的 Monogame 插件
Plug-in for Monogame on Visual Studios
我在 Visual Studio 中创建了一个全新的文件,MonoGame Windows 项目。然后我 运行 它,我得到一个即时错误。问题是什么?错误状态:
'System.DllNotFoundException' 类型的未处理异常发生在 SharpDX.XInput.dll
中
附加信息:无法加载 DLL 'xinput1_3.dll':找不到指定的模块。 (HRESULT 异常:0x8007007E)
if (GamePad.GetState(PlayerIndex.One).Buttons.Back == ButtonState.Pressed || Keyboard.GetState().IsKeyDown(Keys.Escape))
//this is what is causing the error
添加DirectXEnd插件解决了问题。谢谢
我设法通过从 link 下载并安装 DirectX 最终用户运行时(2010 年 6 月)解决了这个问题:https://download.microsoft.com/download/8/4/A/84A35BF1-DAFE-4AE8-82AF-AD2AE20B6B14/directx_Jun2010_redist.exe
我在 Visual Studio 中创建了一个全新的文件,MonoGame Windows 项目。然后我 运行 它,我得到一个即时错误。问题是什么?错误状态: 'System.DllNotFoundException' 类型的未处理异常发生在 SharpDX.XInput.dll
中附加信息:无法加载 DLL 'xinput1_3.dll':找不到指定的模块。 (HRESULT 异常:0x8007007E)
if (GamePad.GetState(PlayerIndex.One).Buttons.Back == ButtonState.Pressed || Keyboard.GetState().IsKeyDown(Keys.Escape))
//this is what is causing the error
添加DirectXEnd插件解决了问题。谢谢
我设法通过从 link 下载并安装 DirectX 最终用户运行时(2010 年 6 月)解决了这个问题:https://download.microsoft.com/download/8/4/A/84A35BF1-DAFE-4AE8-82AF-AD2AE20B6B14/directx_Jun2010_redist.exe