是的,C# 中的自定義控件可以繼承。在 C# 中,您可以創(chuàng)建自定義控件,這些控件繼承自現(xiàn)有的控件(如 UserControl 或 Control 類),從而可以重用和擴(kuò)展現(xiàn)有控件的功能。
要創(chuàng)建自定義控件,您需要執(zhí)行以下步驟:
以下是一個簡單的自定義控件示例,該控件繼承自 UserControl 類:
using System.Windows.Forms;
public class CustomControl : UserControl
{
public CustomControl()
{
this.BackColor = System.Drawing.Color.Red;
}
}
在這個例子中,我們創(chuàng)建了一個名為 CustomControl 的自定義控件,它繼承自 UserControl 類,并在構(gòu)造函數(shù)中將背景顏色設(shè)置為紅色。