Stringgrid

 if Sender is TStringGrid then
  begin
    with (Sender as TStringGrid) do
    begin
      if (ACol = 1) and (ARow > 1) then
      begin
        Canvas.Font.Color := clBlue;
        Canvas.TextOut(Rect.Left + 2, Rect.Top + 2, Cells[ACol, ARow]);
      end;
      if (ARow = 1) and (ACol > 1) then
      begin
        Canvas.Font.Color := clBlue;
        Canvas.TextOut(Rect.Left + 2, Rect.Top + 2, Cells[ACol, ARow]);
      end;
      if (ACol = 0) and (ARow = 0) then
      begin
        //画斜线
        Canvas.Pen.Color := clBlack;
        Canvas.MoveTo(Rect.Left, Rect.Top);
        Canvas.LineTo(Rect.BottomRight.X + Canvas.Pen.Width, Rect.BottomRight.y + Canvas.Pen.Width);
        //设置Pen
        Canvas.Pen.Color := Canvas.Brush.Color;
        //下面水平线
        Canvas.MoveTo(Rect.Left, Rect.Bottom);
        Canvas.LineTo(Rect.BottomRight.X, Rect.BottomRight.y);
        //右面垂直线
        Canvas.LineTo(Rect.Right, Rect.Top - Canvas.Pen.Width);

      end;
      if (ACol = 1) and (ARow = 1) then
      begin
        //画斜线
        Canvas.Pen.Color := clBlack;
        Canvas.MoveTo(Rect.Left - Canvas.Pen.Width, Rect.Top - Canvas.Pen.Width);
        Canvas.LineTo(Rect.BottomRight.X, Rect.BottomRight.y);
        //设置Pen
        Canvas.Pen.Color := Canvas.Brush.Color;
        //左面水平线
        Canvas.MoveTo(Rect.Left - Canvas.Pen.Width, Rect.Top);
        Canvas.LineTo(Rect.Left - Canvas.Pen.Width, Rect.Bottom);
        //上面垂直线
        Canvas.MoveTo(Rect.Left, Rect.Top - Canvas.Pen.Width);
        Canvas.LineTo(Rect.Right, Rect.Top - Canvas.Pen.Width);
      end;
      //设置标题
      if (ACol = 1) and (ARow = 0) then
      begin
        Canvas.TextOut(Rect.Left + 2, Rect.Top + 2, '难度');
      end;
      if (ACol = 0) and (ARow = 1) then
      begin
        Canvas.TextOut(Rect.Left + 2, Rect.Top + 2, '题型');
      end;
    end;
  end; 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值