E D R , A S I H C RSS

Full text search for "ListBox"

List Box


Search BackLinks only
Display context of search results
Case-sensitive searching
  • Gof/Mediator . . . . 8 matches
          * Colleague classes(listBox, Entry Field)
         ListBox, EntryField, Button은 특화된 사용자 인터페이스 요소를 위한 DialogDirector의 subclass들이다. ListBox는 현재 선택을 위해서 GetSelection연산자를 제공한다. 그리고 EntryField의 SetText 연산자는 새로운 text로 field를 채운다.
          class ListBox:public Widget {
          ListBox(DialogDirector*);
          ListBox* _fontList;
          _fontList = new ListBox(this);
          // fill the listBox white the available font names
         윈도우용 Smalltalk/V의 application구조는 mediator 구조에 가반을 두고 있다.[LaL94] 그런 환경에서 application은 윈도우를 pane들의 모음으로 구성하고 있다. library는 몇몇의 이미 정의된 pane들을 가지고 있다. 예를 들자면 TextPane, ListBox, Button등등이 포함된다. 이러한 pane들은 subclassing없이 이용될 수 있다. Application 개발자는 단지 inter-pane coordination할 책임이 있는 ViewManager만 subclassing할 수 있다. ViewManage는 Mediator이고 각각의 pane들은 자신의 owner로서 단지 자신의 ViewManager를 알고 있다. pane들은 직접적으로 서로 조회하지 않는다.
         다음 코드 인용은 ListBox가 ViewManager subclass 내에서 만들어지는 방법과 #select event를 위해 ViewManager가 event handler를 등록하는 방법을 보여주고 있다.
  • 5인용C++스터디/소켓프로그래밍 . . . . 4 matches
          ((CListBox*)m_pMainWnd->GetDlgItem(IDC_LIST1))->InsertString(-1, strText);
          ((CListBox*)m_pMainWnd->GetDlgItem(IDC_LIST1))->InsertString(-1, strText);
          ((CListBox*)m_pMainWnd->GetDlgItem(IDC_LIST1))->InsertString(-1, strText);
          ((CListBox*)m_pMainWnd->GetDlgItem(IDC_LIST1))->InsertString(-1, strText);
  • GuiTestingWithWxPython . . . . 2 matches
          def testListBox(self):
          self.listBox = wxListBox(self, NewId())
          self.listBox.Append('testing1')
          self.listBox.Append('testing2')
          self.listBox.Append('testing3')
          for idx in range(self.listBox.Number()):
          retList.append(self.listBox.GetString(idx))
  • 데블스캠프2012/넷째날/묻지마Csharp/Mission3/김수경 . . . . 2 matches
          listBox1.Items.Clear();
          listBox1.Items.Add(string.Format("{0:D2}:{1:D2}:{2:D2}.{3}", time.hour, time.minute, time.second, time.milli));
          this.listBox1 = new System.Windows.Forms.ListBox();
          // listBox1
          this.listBox1.FormattingEnabled = true;
          this.listBox1.ItemHeight = 12;
          this.listBox1.Location = new System.Drawing.Point(34, 124);
          this.listBox1.Name = "listBox1";
          this.listBox1.Size = new System.Drawing.Size(336, 220);
          this.listBox1.TabIndex = 10;
          this.Controls.Add(this.listBox1);
          private System.Windows.Forms.ListBox listBox1;
  • DevelopmentinWindows/UI . . . . 1 match
          http://zeropage.org/~lsk8248/wiki/Seminar/DevelopmentinWindows/UI/ListBox.jpg
  • 실습 . . . . 1 match
         4) ListBox에서 Win32 Console Application을 선택한다.
Found 6 matching pages out of 7540 total pages (5000 pages are searched)

You can also click here to search title.

Valid XHTML 1.0! Valid CSS! powered by MoniWiki
Processing time 0.3762 sec