吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1496|回复: 6
收起左侧

[求助] c# 不可访问 因为它受保护级别限制

[复制链接]
Tonyha7 发表于 2022-4-8 12:02

本人新手

using System.Runtime.InteropServices;

    RECT rect = new RECT();
    Random random = new Random();
    IntPtr[]ptrtemp= new IntPtr[100];
    int i = 0;

    IntPtr x = GetForegroundWindow();
    while (Array.IndexOf(ptrtemp, x) == -1)
    {
        ptrtemp[i] = x;
        i++;
        Thread thread = new Thread(run);
        void run()
        {
            while (true)
            {
                Thread.Sleep(4000);

                GetWindowRect(x, out rect);
                MoveWindow(x, rect.left + random.Next(-10, 11), rect.top + random.Next(-10, 11), rect.right - rect.left, rect.bottom - rect.top, false);

            }
        }
        thread.Start();
    }

[DllImport("user32.dll")]
static extern bool GetWindowRect(IntPtr hWnd, out RECT lpRect);

[DllImport("user32.dll")]
static extern IntPtr GetForegroundWindow();

[DllImport("user32.dll")]
static extern bool MoveWindow(IntPtr hWnd,int x,int y,int nWidth,int nHeight,bool bRepaint);

public struct RECT
{
    int left;
    int top;
    int right;
    int bottom;
}


求大佬帮忙

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

jacklp 发表于 2022-4-8 12:27
RECT 内部的字段要加public修饰

免费评分

参与人数 1吾爱币 +1 热心值 +1 收起 理由
xiaovssha + 1 + 1 我很赞同!

查看全部评分

asasascao 发表于 2022-4-8 12:27
Kuronoks 发表于 2022-4-8 12:29
kvstone 发表于 2022-4-8 13:41
public struct RECT
{
   public  int left;……
}
 楼主| Tonyha7 发表于 2022-4-8 13:45
ok了 谢谢大佬们
7R903 发表于 2022-4-8 14:03
public 公开
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-25 14:35

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表