DColorCombo
Description
The DColorCombo allows the user to choose color, without alpha, using DColorMixer or DColorPalette in a tabbed view.
Parent
Derives methods, etc not listed on this page from DPropertySheet.
Events
Methods
DColorCombo:BuildControls()
This is used internally - although you're able to use it you probably shouldn't.
Called internally to create panels necessary for this panel to work.
Example
Creates a DColorCombo and sets its initial value.
local frame = vgui.Create( "DFrame" )
frame:SetSize( 500, 300 )
frame:Center()
frame:MakePopup()
local DermaColorCombo = vgui.Create( "DColorCombo", frame )
DermaColorCombo:SetPos( 5, 30 )
DermaColorCombo:SetColor( Color( 255, 255, 255 ) )
local DColorButton = frame:Add( "DColorButton" )
DColorButton:SetPos( 300, 50 )
DColorButton:SetSize( 64, 64 )
function DermaColorCombo:OnValueChanged( col )
DColorButton:SetColor( col )
end