[Gtk-sharp-list] ColorSelectionDialog

Darwin Reynoso monouser at gmail.com
Tue Jun 16 19:14:17 EDT 2009


ok i got it. thank you Chris

here is what i did.

void setColor()
	{

		colorDialog = new ColorSelectionDialog("select color");
		
		
		
		if(colorDialog.Run()==(int)ResponseType.Ok)
		{
			selected = colorDialog.ColorSelection;			
			
			textview1.ModifyText(StateType.Normal,selected.CurrentColor);		
			
		}	
		colorDialog.Destroy();
		
	}


More information about the Gtk-sharp-list mailing list