Category 185

MFC : 색상선택 예제-메뉴,컨텍스트메뉴,시스템메뉴,툴바

ChildView.cpp // ChildView.cpp : implementation of the CChildView class // #include "stdafx.h" #include "Simple2.h" #include "ChildView.h" #include "MainFrm.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CChildView CChildView::CChildView() { m_color = RGB(255, 0, 0..

Android : 1012수업 정리안됨

Skeleton of a BroadcastReceiver package org.kandroid.helloandroid; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; public class MyReceiver extends BroadcastReceiver { @Override public void onReceive(Context arg0, Intent arg1) { } } - 무선랜 사용을 위한 것 -> 방송되고 있는 것을 수신하고자 할 때 receiver 사용 개인적으로 private인 것을 제공하고싶을 때 Provider를 사용한다 Intent는 정보의 묶음. ..