mesutpiskin / MessageBoxControl4CE

Custom message box control for Windows Embedded Compact

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Custom message box control for Windows Embedded Compact


Developed with Dot Net Compact Framework 3.5 for Windows CE 5,6,7, windows mobile, windows compact app and or other CE version.

Features

  • Multithreading working
  • Time based closing
  • Customizable buttons and events
  • Customizable control design color, font etc.
  • Customizable size (centered, full screen, status bar)

Run the Test Project

  1. Start Microsoft Visual Studio 2008 and select File > Open > Project/Solution.
  2. Starting in the folder where you clone the repository, go to TestProject
  3. Double-click the Visual Studio 2008 Solution (csproj) file TestProject.csproj

Build the library

  1. Start Microsoft Visual Studio 2008 and select File > Open > Project/Solution.
  2. Starting in the folder where you clone the repository, go to WinCEUtility
  3. Double-click the Visual Studio 2008 Solution (csproj) file CompactMessageBoxControl.csproj
  4. Press Ctrl+Shift+B, or select Build > Build Solution.

Direct use

  1. Start Microsoft Visual Studio 2008 and create new ce device project
  2. Open solition explorer windows
  3. Right click References and Add Reference..
  4. Download dll. Click here to download https://github.com/mesutpiskin/MessageBoxControl4CE/tree/master/Binaries
  5. Select CompactMessageBoxControl.dll file and add to project
  6. That is all
Sample ```
  UCMessageBox ucMessageBox1;
  ucMessageBox1 = new UCMessageBox(panel1);
  //Just message
  ucMessageBox1.Show("Hello", "This is test message!", MsgButtons.YesNo, DisplayState.FullScreen, 0);
  //use time
  ucMessageBox1.DefaultWidth = 400;
  ucMessageBox1.DefaultHeight = 300;
  ucMessageBox1.Show("Hello", "This is test message!", MsgButtons.OK, DisplayState.Normal, 10);
  ///Look the testproject

About

Custom message box control for Windows Embedded Compact


Languages

Language:C# 100.0%