Skip to content

CWColor is a cross-platform color picker, and provide almost all colors like Adobe PhotoShop. It support Windows, iOS and will support more platforms

License

Notifications You must be signed in to change notification settings

xwgli/CWColorPicker

This branch is up to date with ChangweiZhang/CWColorPicker:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

892b213 · Oct 20, 2015

History

14 Commits
Oct 19, 2015
Oct 15, 2015
Oct 20, 2015
Oct 20, 2015
Oct 19, 2015

Repository files navigation

#CWColorPicker

Build Status Lisence Version Code Climate

##What is CWColorPicker

CWColorPicker is a cross-platform color picker, and provide almost all colors like Adobe PhotoShop. It support Windows, iOS and will support more platforms

##How to use it

###For Windows You need to add the windows project to your solution and add a refrence to you own project, so that you can use the CWColorPicker control.

You can use it in Xaml or C# code.

In Xaml:

xmlns:cw="using:CWColorPicker.UI"

after add xmlns refrence, you can add the control in Xaml code

<cw:CWColorPicker Width="500" Height="500" Background="Gray" ColorSelected="CWColorPicker_ColorSelected"/>

###For iOS To use the control, you need to add the CWColorPicker floder to your own project. After do that, you can use this control in your app.

Add .h refrence

#import "CWColorPicker.h"

init the control in you project, you can get the color result by two methods, including Block and Delegate

 _colorPicker = [[CWColorPicker alloc] initWithFrame:CGRectMake(SCREEN_WIDTH/2-100, SCREEN_HEIGHT/2-200, 200, 200)];
   
    
    /*
     there are two methods,including block and delgate. you need to choice one method to use.
     */
    
    //delegate
    _colorPicker.delegate = self;
    
    //block
    [self setBlock:_colorPicker];
    
    [self.view addSubview:_colorPicker];

##Feedback & Qusetion

You can send email to me or report an issue in this project.
[email protected]

About

CWColor is a cross-platform color picker, and provide almost all colors like Adobe PhotoShop. It support Windows, iOS and will support more platforms

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 54.9%
  • Objective-C 45.1%