ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • 블로그에서 코드 정리해서 보이기(Color Scripter)
    Etc. 2017. 1. 3. 00:30

    블로그에 코드를 쓰면 너무 밋밋하고, 알아보기가 힘들게 됩니다. 그래서 알아보기 쉽게 쓸 방법을 찾다 좋은 사이트를 발견했습니다.


    Color Scripter 이 사이트인데요. 해당 사이트를 들어가면 알아보기 쉽게 되어있습니다.




    처음 들어가면 위와 같이 되어있습니다.


    1. 언어를 선택하시면 해당 언어에 맞춰져 있는 프리셋대로 색상이 적용됩니다. 

    2. 스타일패키지는 테마를 정하는 것이라 보시면 됩니다.

    3. 클립보드에 복사를 하신 뒤 붙여넣으실 곳에 Ctrl + V 를 하시면 됩니다.


    티스토리 글쓰기 에서는 HTML이 적용되어 붙여넣어지므로 그대로 붙여넣으시면 됩니다.


    예.


    원 코드

    private void ToastMessage(string message)

    {

    lblToast.Content = message;


    DoubleAnimation dba1 = new DoubleAnimation();

    dba1.From = 0;

    dba1.To = 1;

    dba1.Duration = new Duration(TimeSpan.FromSeconds(1.5));


    DoubleAnimation dba2 = new DoubleAnimation();

    dba2.From = 1;

    dba2.To = 0;

    dba2.Duration = new Duration(TimeSpan.FromSeconds(1.5));


    dba1.Completed += delegate (object sender1, EventArgs e1)

    {

    lblToast.BeginAnimation(OpacityProperty, dba2);

    };


    lblToast.BeginAnimation(OpacityProperty, dba1);

                

    }



    클립보드에 복사 사용

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    private void ToastMessage(string message)
    {
        lblToast.Content = message;
     
        DoubleAnimation dba1 = new DoubleAnimation();
        dba1.From = 0;
        dba1.To = 1;
        dba1.Duration = new Duration(TimeSpan.FromSeconds(1.5));
     
        DoubleAnimation dba2 = new DoubleAnimation();
        dba2.From = 1;
        dba2.To = 0;
        dba2.Duration = new Duration(TimeSpan.FromSeconds(1.5));
        
        dba1.Completed += delegate (object sender1, EventArgs e1)
        {
            lblToast.BeginAnimation(OpacityProperty, dba2);
        };
        
        lblToast.BeginAnimation(OpacityProperty, dba1);
    }
    cs



    그냥 코드 복사 (이 방법을 사용하면 이 문단 아래쪽으로 긴 공백이 생기게 됩니다.)

    private void ToastMessage(string message)
    {
    lblToast.Content = message;
    DoubleAnimation dba1 = new DoubleAnimation();
    dba1.From = 0;
    dba1.To = 1;
    dba1.Duration = new Duration(TimeSpan.FromSeconds(1.5));
    DoubleAnimation dba2 = new DoubleAnimation();
    dba2.From = 1;
    dba2.To = 0;
    dba2.Duration = new Duration(TimeSpan.FromSeconds(1.5));
    dba1.Completed += delegate (object sender1, EventArgs e1)
    {
    lblToast.BeginAnimation(OpacityProperty, dba2);
    };
    lblToast.BeginAnimation(OpacityProperty, dba1);
    }


    댓글

GiGong