Bagikan melalui


CatalogPartChrome.CreateCatalogPartChromeStyle Metode

Definisi

Membuat objek gaya yang memasok atribut gaya untuk setiap CatalogPart kontrol yang CatalogPartChrome dirender oleh objek.

protected:
 virtual System::Web::UI::WebControls::Style ^ CreateCatalogPartChromeStyle(System::Web::UI::WebControls::WebParts::CatalogPart ^ catalogPart, System::Web::UI::WebControls::WebParts::PartChromeType chromeType);
protected virtual System.Web.UI.WebControls.Style CreateCatalogPartChromeStyle (System.Web.UI.WebControls.WebParts.CatalogPart catalogPart, System.Web.UI.WebControls.WebParts.PartChromeType chromeType);
abstract member CreateCatalogPartChromeStyle : System.Web.UI.WebControls.WebParts.CatalogPart * System.Web.UI.WebControls.WebParts.PartChromeType -> System.Web.UI.WebControls.Style
override this.CreateCatalogPartChromeStyle : System.Web.UI.WebControls.WebParts.CatalogPart * System.Web.UI.WebControls.WebParts.PartChromeType -> System.Web.UI.WebControls.Style
Protected Overridable Function CreateCatalogPartChromeStyle (catalogPart As CatalogPart, chromeType As PartChromeType) As Style

Parameter

catalogPart
CatalogPart

Kontrol yang saat ini sedang dirender.

chromeType
PartChromeType

Jenis chrome untuk kontrol tertentu; salah PartChromeType satu nilai enumerasi.

Mengembalikan

Style yang berisi atribut gaya untuk catalogPart.

Pengecualian

Kontrol yang catalogPart mengacu pada adalah null.

Contoh

Contoh kode berikut menunjukkan cara mengambil alih CreateCatalogPartChromeStyle metode untuk mengubah warna latar belakang kontrol bagian katalog. Untuk kode lengkap yang diperlukan untuk menjalankan contoh, termasuk halaman Web untuk menghosting kontrol ini, lihat bagian CatalogPartChrome Contoh dari gambaran umum kelas.

protected override Style  CreateCatalogPartChromeStyle(CatalogPart catalogPart, PartChromeType chromeType)
{
    Style catalogStyle = base.CreateCatalogPartChromeStyle(catalogPart, chromeType);
    catalogStyle.BackColor = Color.Bisque;
    return catalogStyle;
}
Protected Overrides Function CreateCatalogPartChromeStyle(ByVal catalogPart As System.Web.UI.WebControls.WebParts.CatalogPart, ByVal chromeType As System.Web.UI.WebControls.WebParts.PartChromeType) As System.Web.UI.WebControls.Style
    Dim editorStyle As Style
    editorStyle = MyBase.CreateCatalogPartChromeStyle(catalogPart, chromeType)
    editorStyle.BackColor = Drawing.Color.Bisque
    Return editorStyle
End Function

Keterangan

Metode CreateCatalogPartChromeStyle membuat Style objek yang digunakan oleh CatalogPartChrome objek untuk merender CatalogPart kontrol.

Catatan Bagi Inheritor

Jika Anda mewarisi dari CatalogPartChrome kelas , Anda dapat secara opsional mengambil alih CreateCatalogPartChromeStyle(CatalogPart, PartChromeType) metode , dan menggabungkan informasi gaya dari metode dasar dengan atribut gaya kustom yang ingin Anda tambahkan. Untuk demonstrasi, lihat bagian Contoh.

Berlaku untuk