Fluid – Windows Mobile 6.x Touch Controls
Fluid is a .NET 2.0 control library for Windows Mobile 6.0/6.1 with touch controls.
Price
Free, open source.
Image
Code example
private void Form1_Load(object sender, EventArgs e) { //Main Panel FluidPanel mainPanel = new FluidPanel(); mainPanel.Bounds = new Rectangle(0, 0, 240, 300); mainPanel.BackColor = Color.Red; mainPanel.GradientFill = true; mainPanel.GradientFillOffset = 30; mainPanel.ForeColor = Color.White; mainPanel.ShowMaximized(); fluidHost1.Add(mainPanel); //Label FluidLabel h1 = new FluidLabel("Fluid サンプル", 0, 0, 240, 40); h1.ShadowColor = Color.Black; h1.ForeColor = Color.White; h1.Alignment = StringAlignment.Center; h1.LineAlignment = StringAlignment.Center; h1.Font = new Font(FontFamily.GenericSansSerif, 12f, FontStyle.Bold); h1.Anchor = FluidControl.AnchorTLR; fluidHost1.Add(h1); // FluidButton okBtn = new FluidButton("OK", 70, 200 - 40, 100, 32); okBtn.BackColor = Color.Black; //okBtn.Click += new EventHandler(okBtn_Click); okBtn.ForeColor = Color.White; okBtn.Anchor = FluidControl.AnchorBL; fluidHost1.Add(okBtn); }
Home site
http://fluid.codeplex.com/
Windows Mobile Password Safe
Password Safe is a .NET 2.0 Mobile application that allows you to keep your passwords in your mobile secured with the top secure AES encryption. It provides a nice touch surface with gestures, and can be completely used without a stylus, except when you're writing or editing new passwords.
Price
Free, open source
Image
Code example
void delPasswordButton_Click(object sender, EventArgs e) { passwordToRemove = passwordsListBox.SelectedPassword; if (passwordToRemove != null) { MessageDialog dialog = new MessageDialog(); dialog.Message = "Delete Password?"; dialog.Result += new EventHandlerHome site(dialog_Result); dialog.ShowModal(ShowTransition.FromBottom); } } void dialog_Result(object sender, Fluid.Classes.DialogEventArgs e) { switch (e.Result) { case System.Windows.Forms.DialogResult.OK: ListBuilder.Instance.DeletePassword(passwordToRemove); UpdatePasswords(); this.GoBack(); break; } }
http://www.codeproject.com/KB/windows/MobilePasswordSafe.aspx
Touch Controls Suite 2
Touch Controls Suite 2 is the leading touch UI component suite that allows software developers to create graphically stunning, highly intuitive touch screen user interfaces for Windows Mobile Smartphone applications that are based on the Microsoft .NET Compact Framework (.NETCF).
Price
$99.00
Image
Source example
private void loadList(AnimationDirection ad, AnimationType at) { //XmlNodeList lName = root.GetElementsByTagName("name"); //XmlNodeList lDesc = root.GetElementsByTagName("desc"); //TreeNode RootNode = new TreeNode(); touchListBox1.PrepareAnimation(); touchListBox1.Items.Clear(); touchListBox1.BackColor = System.Drawing.SystemColors.InactiveCaption; //System.Drawing.SystemColors.ControlDark; //for (int i = 0; i < lName.Count; i++) for (int i = 0; i < root.ChildNodes.Count; i++ ) { TouchListDefaultItem di = getItemList(root.ChildNodes[i]["name"].InnerText, root.ChildNodes[i]["desc"].InnerText, i); touchListBox1.Items.Add(di); TouchListHeaderItem hi = getItemSpacer(); touchListBox1.Items.Add(hi); } //animationType = AnimationType.atSlide; //touchListBox1.Refresh(); touchListBox1.UpdateList(); // (AnimationDirection.adLeft); //(false); //(ad, at, false); }Home site
http://www.mirabyte.com/en/products/touch-controls-suite/
Smart Device Framework
The Smart Device Framework is aimed at developers wanting to simplify and reduce the cost of their development experience using the .NET Compact Framework. By providing useful extensions the core .NET Compact Framework class libraries, the Smart Device Framework enables developers to concentrate on building core application functionality.
Price
Free / $50 / $500
Image
Home site
http://opennetcf.com/CompactFramework/Products/SmartDeviceFramework/tabid/65/Default.aspx
No comments:
Post a Comment