hlelulhlelul 2021-12-19 21:02
浏览 17
已结题

c#只有空白窗体没有内容


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace C_yuan
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public System.Drawing.Color Black { get; private set; }

        public MainWindow()
        {
            InitializeComponent();
        }
        private void pictureBox1_Click(object sender, EventArgs e)
        {
            Graphics g = CreateGraphics();
        g.TranslateTransform((float)(100), (float) (100));
            Pen pen = new Pen(Color(100,200,200,200),2);
            g.DrawEllipse(pen, 10, 10, 200, 200); 
        }

        private Brush Color(int v1, int v2, int v3, int v4)
        {
            throw new NotImplementedException();
        }

        private Graphics CreateGraphics()
        {
            throw new NotImplementedException();
        }
    }

    internal class Graphics
    {
        internal void DrawEllipse(Pen pen, int v1, int v2, int v3, int v4)
        {
            throw new NotImplementedException();
        }

        internal void TranslateTransform(float v1, float v2)
        {
            throw new NotImplementedException();
        }
    }
}

程序运行只有空白窗格,是个需要画圆的程序,应该怎么修改呀?

  • 写回答

0条回答 默认 最新

    报告相同问题?

    问题事件

    • 系统已结题 12月27日
    • 创建了问题 12月19日

    悬赏问题

    • ¥15 在虚拟机中安装flash code
    • ¥15 单片机stm32f10x编写光敏电阻调节3.3伏大功率灯亮度(光强越大灯越暗,白天正常光强灯不亮,使用ADC,PWM等模块)望各位找一下错误或者提供一个可实现功能的代码
    • ¥20 verilog状态机方法流水灯
    • ¥15 pandas代码实现不了意图
    • ¥15 GD32H7 从存储器到外设SPI传输数据无法重复启用DMA
    • ¥25 LT码在高斯信道下的误码率仿真
    • ¥45 渲染完成之后将物体的材质贴图改变,自动化进行这个操作
    • ¥15 yolov5目标检测并显示目标出现的时间或视频帧
    • ¥15 电视版的优酷可以设置电影连续播放吗?
    • ¥50 复现论文;matlab代码编写