ラベルを継承するMLableがあります。バックカラーは赤です。私は赤い背景のフォーム上で使用することができます。しかし、私がMLabelのカスタムコントロールから背景を黒に変更したい場合は、既にラベルを追加しても効果はありません。新しいMLabelの背景は黒、他は赤です。何?ビジュアルプロパティが変更された後、継承されたコントロールがリフレッシュされない
1つずつ変更する必要がありますか?
サンプルコード:
MLabel.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace TestCControl
{
public partial class CustomControl1 : Label
{
public CustomControl1()
{
InitializeComponent();
}
protected override void OnPaint(PaintEventArgs pe)
{
base.OnPaint(pe);
}
}
}
のForm1.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace TestCControl
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
}
}
Form1.Designer.cs
namespace TestCControl
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.customControl11 = new TestCControl.CustomControl1();
this.customControl12 = new TestCControl.CustomControl1();
this.SuspendLayout();
//
// customControl11
//
this.customControl11.AutoSize = true;
this.customControl11.BackColor = System.Drawing.Color.Black;
this.customControl11.Location = new System.Drawing.Point(50, 23);
this.customControl11.Name = "customControl11";
this.customControl11.Size = new System.Drawing.Size(86, 13);
this.customControl11.TabIndex = 0;
this.customControl11.Text = "customControl11";
//
// customControl12
//
this.customControl12.AutoSize = true;
this.customControl12.BackColor = System.Drawing.Color.Maroon;
this.customControl12.Location = new System.Drawing.Point(140, 74);
this.customControl12.Name = "customControl12";
this.customControl12.Size = new System.Drawing.Size(86, 13);
this.customControl12.TabIndex = 1;
this.customControl12.Text = "customControl12";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(284, 262);
this.Controls.Add(this.customControl12);
this.Controls.Add(this.customControl11);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private CustomControl1 customControl11;
private CustomControl1 customControl12;
}
}
あなたのいずれかを見ることができるようにカスタムコントロールには他の黒がありますoon backcolor。 MLabelの変更は、以前に追加されたwinformのコントロールには影響しません。
実行したことを示すサンプルコードと詳細を入力してください。 –
カスタムコントロールを作成し、ラベルから継承し、名前をMLabelにします。 BackColorをDesignerからRedに変更します。 WinFormで使用します。 MLabel.csに戻り、バックカラーをRedに変更します。コンパイル。 winformに追加します。あなたは、最初のMLabelの背景赤が他の黒であることがわかります。私は間違っているか、またはMLabelsの背景をすべて黒に変えなければならないのか? – Murat
ラベルの背景色をすべて変更したい場合は、同じ値でなく同じ色の変数を使用する必要があります。 –