欧美自拍小视频_国产片在线免费观看_中文字幕啪啪_成人av高清在线_欧美一区二区视频免费观看_亚洲国产激情

Rss & SiteMap

曙海教育集團論壇 http://www.bjzhda.cn

曙海教育集團論壇
共1 條記錄, 每頁顯示 10 條, 頁簽: [1]
[瀏覽完整版]

標題:Windows mobile 開發入門—開發絢麗滑動效果

1樓
wangxinxin 發表于:2010-12-4 9:38:16
前言
    在這里制作一個9宮格的小程序,如果超過9個,那么就自動翻頁。翻頁采用劃動實現,并且有慣性作用。

原理
mobile手機里滑動效果主要是原理是支持屏幕的觸摸,當我們按下、松開時系統分別可以捕捉到相應的坐標位置,然后動態的改變布局,從而達到劃動的效果。
圖型button

由于mobile還沒有支持圖片button,所以我們做出一個輔佐類,當按下、彈開時分別使用鋼筆繪制不同的圖片到屏幕。


Code
using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using System.Windows.Forms;
using System.Drawing.Imaging;


namespace iPhoneUI
{
    public class ImageButton  
    {
        internal Rectangle clientArea;
        internal Form owner;
        internal Bitmap image;
        internal Bitmap imageDown;
        internal bool pushed = false;
        internal Point location;
        internal Point start;
        internal int h=30,w=30;
        internal bool Enable = false;
        private double pressTime = Environment.TickCount;
        internal bool pushedOneTime = false;

        public string Name {get;set;}

        public bool IsPressedOneTime
        {
            get { return pushedOneTime; }
            set { pushedOneTime = value; }
        }

        public event System.EventHandler Click;
        public event System.EventHandler DoubleClick;

        public ImageButton(Form owner,int w,int h)
        {
            this.w = w;
            this.h = h;
            
            this.owner = owner;
            Attach(owner);         
        }
        public ImageButton(Form owner,Point location)
        {
            this.owner = owner;
            Attach(owner);
            this.location = location;
            this.clientArea = new Rectangle(location.X, location.Y, h, w);
        }

        public Point Location
        {
            set
            {
                this.location = value;
                this.clientArea = new Rectangle(location.X, location.Y, w, h);
            
            }
            get { return location; }         
         
        }      

        public Bitmap Image
        {
            get { return image;}
            set  
            {  
                image = value;
                if (image != null)
                {
                    clientArea = new Rectangle(location.X, location.Y, image.Width, image.Height);
                }
            }
        }

        public Bitmap ImageDown
        {
            get { return imageDown;}
            set { imageDown = value; }
        }
      
        public bool HitTest(int x, int y)
        {
            return clientArea.Contains(x, y);
        }

        private void Attach(Form owner)
        {            
            owner.MouseDown += new MouseEventHandler(owner_MouseDown);         
            owner.MouseUp += new MouseEventHandler(owner_MouseUp);
            owner.DoubleClick += new EventHandler(owner_DoubleClick);
        }

        void owner_DoubleClick(object sender, EventArgs e)
        {
           
            
        }

        public virtual void owner_MouseUp(object sender, MouseEventArgs e)
        {
            if (!Enable)
                return;

            if (pushed)
            {
                using (Graphics gx = owner.CreateGraphics())
                {
                    this.pushed = false;
                    this.Paint(gx);
                    owner.Invalidate();
                }
                pushed = false;

                if ((Environment.TickCount - pressTime) < 100)
                {
                    if (Click != null)
                        Click(this, e);
                }
            }

//            SendMessage(ButtonCode, "Button Pressed");
        }

        public virtual void owner_MouseDown(object sender, MouseEventArgs e)
        {
            if (!Enable)
                return;

            if (this.HitTest(e.X, e.Y))
            {
                using (Graphics gx = owner.CreateGraphics())
                {
                    this.pushed = true;
                    IsPressedOneTime = true;
                    this.Paint(gx);

                    if ((Environment.TickCount - pressTime) < 300)
                    {
                        if (DoubleClick != null)
                            DoubleClick(this, e);
                    }

                    pressTime = Environment.TickCount;
                }
                start = new Point(e.X, e.Y);            
            }
        }
     
        public void Paint(Graphics gx)
        {
            if (!Enable)
                return;
            //gx.Clear(Color.White);

            ImageAttributes attrib = new ImageAttributes();
            Color color = GetTransparentColor(image);
            attrib.SetColorKey(color, color);

            if (!pushed || imageDown == null)
                gx.DrawImage(image, clientArea, 0, 0, clientArea.Width, clientArea.Height, GraphicsUnit.Pixel, attrib);
                 
            else
            {     
                gx.DrawImage(imageDown, clientArea, 0, 0, clientArea.Width, clientArea.Height, GraphicsUnit.Pixel, attrib);      
                        
            }
            Brush b = new SolidBrush(Color.Black);
           
            int txtX=clientArea.Location.X;
            if(Name.Length<5)//右移5個PIX
                txtX+=5;
            gx.DrawString(this.Name, owner.Font, b, txtX, clientArea.Bottom);

        }

        internal Color GetTransparentColor(Bitmap image)
        {
            return image.GetPixel(0, 0);
        }
     
    }
}


當mouse按下時,判斷是否在圖像所在的區域內,就執行按下時繪制圖像。并且判斷兩次按下時間小于300毫秒,就認為是雙擊,發出注冊雙擊事件。當mouse彈起時,恢復按前的圖像,并且如果按下時間間隔不超過100毫秒,認為是單擊。

初使化按扭


Code
  1<?xml version="1.0" standal?>
  2<DocumentElement>  
  3  <menu>
  4    <Name>測試1</Name>
  5   
  6    <path>Chat 46x46.bmp</path>
  7    <pressPath>Chat 46x46.bmp</pressPath>
  8  </menu>
  9    <menu>
10    <Name>測試1a</Name>
11   
12    <path>Chat 46x46.bmp</path>
13    <pressPath>Chat 46x46.bmp</pressPath>
14  </menu>
15  <menu>
16    <Name>測試1b</Name>
17   
18    <path>lock 46x46.bmp</path>
19    <pressPath>lock 46x46_pressed.bmp</pressPath>
20  </menu>
21   <menu>
22    <Name>測試1c</Name>
23   
24    <path>Internet Explorer 46x46.bmp</path>
25    <pressPath>Internet Explorer 46x46_pressed.bmp</pressPath>
26  </menu>
27  <menu>
28    <Name>測試1d</Name>
29   
30    <path>Close 46x46.bmp</path>
31    <pressPath>Close 46x46_pressed.bmp</pressPath>
32  </menu>
33   <menu>
34    <Name>測試1e</Name>
35  
36    <path>Chat 46x46.bmp</path>
37    <pressPath>Chat 46x46_pressed.bmp</pressPath>
38  </menu>
39  <menu>
40    <Name>測試1f</Name>
41   
42    <path>Camera 46x46.bmp</path>
43    <pressPath>Camera 46x46_pressed.bmp</pressPath>
44  </menu>
45  <menu>
46    <Name>測試1g</Name>
47   
48    <path>Camera 46x46.bmp</path>
49    <pressPath>Camera 46x46_pressed.bmp</pressPath>
50  </menu>
51    <menu>
52    <Name>
53        測試1h
54    </Name>
55  
56    <path>Camera 46x46.bmp</path>
57    <pressPath>Camera 46x46_pressed.bmp</pressPath>
58  </menu>
共1 條記錄, 每頁顯示 10 條, 頁簽: [1]

Copyright © 2000 - 2009 曙海教育集團
Powered By 曙海教育集團 Version 2.2
Processed in .04688 s, 2 queries.
主站蜘蛛池模板: 一级不卡毛片 | 久久99精品久久久久久园产越南 | 人妻在线日韩免费视频 | 丰满少妇69激情啪啪无 | 免费观看美女视频的网站 | 国产福利视频在线观看 | 毛片视频免费 | 日本少妇寂寞少妇aaa | 亚洲精品自产拍在线观看 | 免费激情小视频 | 亚洲精品久久久久电影网 | 婷婷色亚洲 | 免费大香伊蕉在人线国产 | 精品真实国产乱文在线 | 精品女同一区二区三区在线 | 欧美国产精品不卡在线观看 | 久久国产36精品色熟妇 | 91视频在线观看地址 | 精品一级毛片 | 国产精品无码一区二区在线 | 免费观看国产一区二区三区 | 色综合图片 | 久久视频免费在线观看 | 天堂在线观看免费视频 | 国产日韩精品欧美一区喷水 | 国产在线精品免费aaa片 | 被黑人伦流澡到高潮hnp动漫 | 久久亚洲中文字幕无码 | 欧美日韩人妻精品一区二区三区 | 国产美女露脸口爆吞精 | 亚洲精品女同一区二区在线观看 | 久久久久久久999 | 黄漫在线免费观看 | 欧美极品jizzhd欧美 | 视频一区色眯眯视频在线 | 亚洲影视网 | 日本熟妇hdsex视频 | 日韩欧群交p片内射中文 | 偷窥自拍欧美色图 | 西西午夜影院 | 一区二区三区在线免费看 |