ColorDialog With Custom Color : ColorDialog « GUI Windows Forms « C# / CSharp Tutorial

C# / CSharp Tutorial
1. Language Basics
2. Data Type
3. Operator
4. Statement
5. String
6. struct
7. Class
8. Operator Overload
9. delegate
10. Attribute
11. Data Structure
12. Assembly
13. Date Time
14. Development
15. File Directory Stream
16. Preprocessing Directives
17. Regular Expression
18. Generic
19. Reflection
20. Thread
21. I18N Internationalization
22. GUI Windows Forms
23. 2D
24. Design Patterns
25. Windows
26. XML
27. ADO.Net
28. Network
29. Directory Services
30. Security
31. unsafe
Microsoft Office Word 2007 Tutorial
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
C# / CSharp Tutorial » GUI Windows Forms » ColorDialog 
22. 47. 4. ColorDialog With Custom Color
ColorDialog With Custom Color
 
        
using System;        
using System.Drawing;
using System.ComponentModel;
using System.Windows.Forms;


public class ColorDialogWithCustomColor{

    public static void Main(){
    ColorDialog dlg=new ColorDialog();
    dlg.FullOpen = true;
    // Define the first five of the custom color settings
       // 0xAARRGGBB where AA is alpha, 
                        // RR is red, 
                     // GG is green 
                     // BB is blue 
    // expressed as the hexadecimal byte equivalent
    dlg.CustomColors = new int[5]{0x00ff80400x00c256fe,
               0x00aa20050x0004f0020x002194b5};

    dlg.ShowDialog();
  }

}

        
22. 47. ColorDialog
22. 47. 1. ColorDialog.FullOpen = trueColorDialog.FullOpen = true
22. 47. 2. ColorDialog.AllFullOpen = falseColorDialog.AllFullOpen = false
22. 47. 3. Set default colorSet default color
22. 47. 4. ColorDialog With Custom ColorColorDialog With Custom Color
22. 47. 5. Display Color Dialog and get the selection
w__w__w.___j__a__v_a2s.c__o__m_ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.