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