想在用api 的SetWindowPos 来实现:把一个播放器窗口移动到指定屏幕位置,不知道c#里该怎么写?
1个回答
展开全部
class Program
{
[DllImport( "Win32dll.dll", EntryPoint = "FuncA" )]
public static extern long FuncA();
static void Main( string[] args )
{
FuncA();
}
}
类似这样的方法引用dll中的函数,如果找不到命名空间,用:
using System.Runtime.InteropServices;
{
[DllImport( "Win32dll.dll", EntryPoint = "FuncA" )]
public static extern long FuncA();
static void Main( string[] args )
{
FuncA();
}
}
类似这样的方法引用dll中的函数,如果找不到命名空间,用:
using System.Runtime.InteropServices;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询