我正在使用 Cosmos 用户工具包在 C# 中创建一个操作系统。
我想在我的操作系统中绘制鼠标光标。
但是“鼠标”类不包含 X 和 Y 的定义。
这是我的代码:
using Cosmos.System.Graphics;
using System;
using System.Collections.Generic;
using System.Text;
using Sys = Cosmos.System;
using System.Drawing;
using Cosmos.Core.IOGroup;
namespace NewOPeratingSystem
{
public class Kernel : Sys.Kernel
{
Canvas canvas;
public static Mouse m = new Mouse();
protected override void BeforeRun()
{
Console.WriteLine("Cosmos booted successfully. Type a line of text to get it echoed back.");
canvas = FullScreenCanvas.GetFullScreenCanvas();
canvas.Clear(Color.Blue);
}
protected override void Run()
{
Pen pen = new Pen(Color.Red);
canvas.DrawLine(pen, m.X, m.Y, m.X + 5, m.Y);
canvas.DrawLine(pen, m.X, m.Y, m.X, m.Y - 5);
canvas.DrawLine(pen, m.X, m.Y, m.X + 5, m.Y - 5);
}
}
}
我收到以下错误:
CS1061:“鼠标”不包含“X”的定义,并且找不到接受“鼠标”类型的第一个参数的可访问扩展方法“X”(您是否缺少 using 指令或程序集引用?)
和
CS1061:“鼠标”不包含“Y”的定义,并且找不到接受“鼠标”类型的第一个参数的可访问扩展方法“Y”(您是否缺少 using 指令或程序集引用?)