预览
代码
手机端效果
web端效果
demoImage.cs
demoImage.Designer.cs
web:demoImage.cs
web:demoImage.Designer.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Smobiler.Core;
using Smobiler.Core.Controls;
namespace Smobiler.Tutorials.Components
{
partial class demoImage : Smobiler.Core.Controls.MobileForm
{
public demoImage()
: base()
{
//This call is required by the SmobilerForm.
InitializeComponent();
}
private void title1_ImagePress(object sender, EventArgs e)
{
this.Close();
}
private void demoImage_Load(object sender, EventArgs e)
{
}
private void button1_Press(object sender, EventArgs e)
{
//这里动态生成一个图像
var image = new System.Drawing.Bitmap(300, 300);
var g = System.Drawing.Graphics.FromImage(image);
//写上当前时间
g.DrawString(DateTime.Now.ToString(), new System.Drawing.Font("宋体", 20), new System.Drawing.SolidBrush(System.Drawing.Color.Red), 0, 0);
using (System.IO.MemoryStream ms = new System.IO.MemoryStream())
{
//获取图像资源
image.Save(ms, System.Drawing.Imaging.ImageFormat.Png);
//设置数据为byte
this.image5.ResourceMode = ResourceMode.Data;
this.image5.ResourceData = ms.GetBuffer();
ms.Close();
}
}
}
}
using System;
using Smobiler.Core;
namespace Smobiler.Tutorials.Components
{
partial class demoImage : Smobiler.Core.Controls.MobileForm
{
#region "SmobilerForm generated code "
//SmobilerForm overrides dispose to clean up the component list.
protected override void Dispose(bool disposing)
{
base.Dispose(disposing);
}
//NOTE: The following procedure is required by the SmobilerForm
//It can be modified using the SmobilerForm.
//Do not modify it using the code editor.
[System.Diagnostics.DebuggerStepThrough()]
private void InitializeComponent()
{
this.title1 = new Smobiler.Core.Controls.Title();
this.panel10 = new Smobiler.Core.Controls.Panel();
this.panel1 = new Smobiler.Core.Controls.Panel();
this.labContent = new Smobiler.Core.Controls.Label();
this.labTitle = new Smobiler.Core.Controls.Label();
this.image1 = new Smobiler.Core.Controls.Image();
this.panel2 = new Smobiler.Core.Controls.Panel();
this.label5 = new Smobiler.Core.Controls.Label();
this.label6 = new Smobiler.Core.Controls.Label();
this.image2 = new Smobiler.Core.Controls.Image();
this.panel3 = new Smobiler.Core.Controls.Panel();
this.label13 = new Smobiler.Core.Controls.Label();
this.image3 = new Smobiler.Core.Controls.Image();
this.image4 = new Smobiler.Core.Controls.Image();
this.panel4 = new Smobiler.Core.Controls.Panel();
this.label1 = new Smobiler.Core.Controls.Label();
this.label2 = new Smobiler.Core.Controls.Label();
this.panel5 = new Smobiler.Core.Controls.Panel();
this.label3 = new Smobiler.Core.Controls.Label();
this.label4 = new Smobiler.Core.Controls.Label();
this.image5 = new Smobiler.Core.Controls.Image();
this.button1 = new Smobiler.Core.Controls.Button();
//
// title1
//
this.title1.ImageType = Smobiler.Core.Controls.ImageEx.ImageStyle.FontIcon;
this.title1.Name = "title1";
this.title1.ResourceID = "angle-left";
this.title1.Size = new System.Drawing.Size(300, 30);
this.title1.Text = "Image";
this.title1.ImagePress += new System.EventHandler(this.title1_ImagePress);
//
// panel10
//
this.panel10.Controls.AddRange(new Smobiler.Core.Controls.MobileControl[] {
this.panel1,
this.panel2,
this.panel3,
this.panel4,
this.panel5});
this.panel10.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel10.Location = new System.Drawing.Point(0, 30);
this.panel10.Name = "panel10";
this.panel10.Scrollable = true;
this.panel10.Size = new System.Drawing.Size(300, 970);
//
// panel1
//
this.panel1.BackColor = System.Drawing.Color.White;
this.panel1.Border = new Smobiler.Core.Controls.Border(1F);
this.panel1.BorderColor = System.Drawing.Color.Silver;
this.panel1.BorderRadius = 5;
this.panel1.Controls.AddRange(new Smobiler.Core.Controls.MobileControl[] {
this.labContent,
this.labTitle,
this.image1});
this.panel1.Location = new System.Drawing.Point(5, 9);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(290, 179);
//
// labContent
//
this.labContent.BackColor = System.Drawing.Color.WhiteSmoke;
this.labContent.FontSize = 15F;
this.labContent.Location = new System.Drawing.Point(0, 26);
this.labContent.Name = "labContent";
this.labContent.Padding = new Smobiler.Core.Controls.Padding(5F);
this.labContent.Size = new System.Drawing.Size(290, 54);
this.labContent.Text = "ResourceID、ResourceMode、ResourcecPath属性设置图片资源名称、模式、路径";
//
// labTitle
//
this.labTitle.BackColor = System.Drawing.Color.WhiteSmoke;
this.labTitle.Border = new Smobiler.Core.Controls.Border(0F, 0F, 0F, 1F);
this.labTitle.BorderColor = System.Drawing.Color.DarkSeaGreen;
this.labTitle.FontSize = 16F;
this.labTitle.Name = "labTitle";
this.labTitle.Padding = new Smobiler.Core.Controls.Padding(5F);
this.labTitle.Size = new System.Drawing.Size(290, 26);
this.labTitle.Text = "图像控件";
//
// image1
//
this.image1.Location = new System.Drawing.Point(93, 91);
this.image1.Name = "image1";
this.image1.ResourceID = "logon1";
this.image1.Size = new System.Drawing.Size(97, 75);
//
// panel2
//
this.panel2.BackColor = System.Drawing.Color.White;
this.panel2.Border = new Smobiler.Core.Controls.Border(1F);
this.panel2.BorderColor = System.Drawing.Color.Silver;
this.panel2.BorderRadius = 5;
this.panel2.Controls.AddRange(new Smobiler.Core.Controls.MobileControl[] {
this.label5,
this.label6,
this.image2});
this.panel2.Location = new System.Drawing.Point(5, 203);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(290, 177);
//
// label5
//
this.label5.BackColor = System.Drawing.Color.WhiteSmoke;
this.label5.FontSize = 15F;
this.label5.Location = new System.Drawing.Point(0, 26);
this.label5.Name = "label5";
this.label5.Padding = new Smobiler.Core.Controls.Padding(5F);
this.label5.Size = new System.Drawing.Size(290, 54);
this.label5.Text = "Zooming属性设置点击是否可缩放图片";
//
// label6
//
this.label6.BackColor = System.Drawing.Color.WhiteSmoke;
this.label6.Border = new Smobiler.Core.Controls.Border(0F, 0F, 0F, 1F);
this.label6.BorderColor = System.Drawing.Color.DarkSeaGreen;
this.label6.FontSize = 16F;
this.label6.Name = "label6";
this.label6.Padding = new Smobiler.Core.Controls.Padding(5F);
this.label6.Size = new System.Drawing.Size(290, 26);
this.label6.Text = "特色属性";
//
// image2
//
this.image2.Location = new System.Drawing.Point(99, 91);
this.image2.Name = "image2";
this.image2.ResourceID = "logon1";
this.image2.Size = new System.Drawing.Size(91, 79);
this.image2.Zooming = true;
//
// panel3
//
this.panel3.BackColor = System.Drawing.Color.White;
this.panel3.Border = new Smobiler.Core.Controls.Border(1F);
this.panel3.BorderColor = System.Drawing.Color.Silver;
this.panel3.BorderRadius = 5;
this.panel3.Controls.AddRange(new Smobiler.Core.Controls.MobileControl[] {
this.label13,
this.image3,
this.image4});
this.panel3.Location = new System.Drawing.Point(5, 395);
this.panel3.Name = "panel3";
this.panel3.Size = new System.Drawing.Size(290, 163);
//
// label13
//
this.label13.BackColor = System.Drawing.Color.WhiteSmoke;
this.label13.FontSize = 15F;
this.label13.Name = "label13";
this.label13.Padding = new Smobiler.Core.Controls.Padding(5F);
this.label13.Size = new System.Drawing.Size(290, 54);
this.label13.Text = "sizeMode属性设置图片的显示模式(下面分别设置Cover、Strecth)";
//
// image3
//
this.image3.Location = new System.Drawing.Point(21, 64);
this.image3.Name = "image3";
this.image3.ResourceID = "logon1";
this.image3.Size = new System.Drawing.Size(97, 94);
this.image3.SizeMode = Smobiler.Core.Controls.ImageSizeMode.Cover;
//
// image4
//
this.image4.Location = new System.Drawing.Point(165, 88);
this.image4.Name = "image4";
this.image4.ResourceID = "logon1";
this.image4.Size = new System.Drawing.Size(97, 52);
this.image4.SizeMode = Smobiler.Core.Controls.ImageSizeMode.Stretch;
//
// panel4
//
this.panel4.BackColor = System.Drawing.Color.White;
this.panel4.Border = new Smobiler.Core.Controls.Border(1F);
this.panel4.BorderColor = System.Drawing.Color.Silver;
this.panel4.BorderRadius = 5;
this.panel4.Controls.AddRange(new Smobiler.Core.Controls.MobileControl[] {
this.label1,
this.label2});
this.panel4.Location = new System.Drawing.Point(5, 807);
this.panel4.Name = "panel4";
this.panel4.Size = new System.Drawing.Size(290, 87);
//
// label1
//
this.label1.BackColor = System.Drawing.Color.WhiteSmoke;
this.label1.FontSize = 15F;
this.label1.Location = new System.Drawing.Point(0, 26);
this.label1.Name = "label1";
this.label1.Padding = new Smobiler.Core.Controls.Padding(5F);
this.label1.Size = new System.Drawing.Size(290, 54);
this.label1.Text = "Refresh重新加载资源(当资源图片修改,而ResouceID不变的情况下,需要调用重新加载来刷新图片)";
//
// label2
//
this.label2.BackColor = System.Drawing.Color.WhiteSmoke;
this.label2.Border = new Smobiler.Core.Controls.Border(0F, 0F, 0F, 1F);
this.label2.BorderColor = System.Drawing.Color.DarkSeaGreen;
this.label2.FontSize = 16F;
this.label2.Name = "label2";
this.label2.Padding = new Smobiler.Core.Controls.Padding(5F);
this.label2.Size = new System.Drawing.Size(290, 26);
this.label2.Text = "重新加载方法";
//
// panel5
//
this.panel5.BackColor = System.Drawing.Color.White;
this.panel5.Border = new Smobiler.Core.Controls.Border(1F);
this.panel5.BorderColor = System.Drawing.Color.Silver;
this.panel5.BorderRadius = 5;
this.panel5.Controls.AddRange(new Smobiler.Core.Controls.MobileControl[] {
this.label3,
this.label4,
this.image5,
this.button1});
this.panel5.Location = new System.Drawing.Point(5, 569);
this.panel5.Name = "panel5";
this.panel5.Size = new System.Drawing.Size(290, 223);
//
// label3
//
this.label3.BackColor = System.Drawing.Color.WhiteSmoke;
this.label3.FontSize = 15F;
this.label3.Location = new System.Drawing.Point(0, 26);
this.label3.Name = "label3";
this.label3.Padding = new Smobiler.Core.Controls.Padding(5F);
this.label3.Size = new System.Drawing.Size(290, 54);
this.label3.Text = "ResourceMode设置Data,赋值ResourceData";
//
// label4
//
this.label4.BackColor = System.Drawing.Color.WhiteSmoke;
this.label4.Border = new Smobiler.Core.Controls.Border(0F, 0F, 0F, 1F);
this.label4.BorderColor = System.Drawing.Color.DarkSeaGreen;
this.label4.FontSize = 16F;
this.label4.Name = "label4";
this.label4.Padding = new Smobiler.Core.Controls.Padding(5F);
this.label4.Size = new System.Drawing.Size(290, 26);
this.label4.Text = "二进制图片";
//
// image5
//
this.image5.Location = new System.Drawing.Point(63, 91);
this.image5.Name = "image5";
this.image5.Size = new System.Drawing.Size(179, 85);
//
// button1
//
this.button1.Location = new System.Drawing.Point(97, 187);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(104, 30);
this.button1.Text = "点击使用二进制赋值";
this.button1.Press += new System.EventHandler(this.button1_Press);
//
// demoImage
//
this.Controls.AddRange(new Smobiler.Core.Controls.MobileControl[] {
this.title1,
this.panel10});
this.Size = new System.Drawing.Size(300, 1000);
this.Load += new System.EventHandler(this.demoImage_Load);
this.Name = "demoImage";
}
#endregion
private Core.Controls.Title title1;
private Core.Controls.Panel panel10;
private Core.Controls.Panel panel1;
private Core.Controls.Label labContent;
private Core.Controls.Label labTitle;
private Core.Controls.Panel panel2;
private Core.Controls.Label label5;
private Core.Controls.Label label6;
private Core.Controls.Panel panel3;
private Core.Controls.Label label13;
private Core.Controls.Image image1;
private Core.Controls.Image image2;
private Core.Controls.Panel panel4;
private Core.Controls.Label label1;
private Core.Controls.Label label2;
private Core.Controls.Image image3;
private Core.Controls.Image image4;
private Core.Controls.Panel panel5;
private Core.Controls.Label label3;
private Core.Controls.Label label4;
private Core.Controls.Image image5;
private Core.Controls.Button button1;
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Smobiler.Core;
using Smobiler.Core.Controls;
namespace SmobilerTutorialsWeb.Components
{
partial class demoImage : Smobiler.Core.Controls.MobileForm
{
public demoImage() : base()
{
//This call is required by the SmobilerForm.
InitializeComponent();
}
private void title1_ImagePress(object sender, EventArgs e)
{
this.Close();
}
}
}
using System;
using Smobiler.Core;
namespace SmobilerTutorialsWeb.Components
{
partial class demoImage : Smobiler.Core.Controls.MobileForm
{
#region "SmobilerForm generated code "
//SmobilerForm overrides dispose to clean up the component list.
protected override void Dispose(bool disposing)
{
base.Dispose(disposing);
}
//NOTE: The following procedure is required by the SmobilerForm
//It can be modified using the SmobilerForm.
//Do not modify it using the code editor.
[System.Diagnostics.DebuggerStepThrough()]
private void InitializeComponent()
{
this.title1 = new Smobiler.Core.Controls.Title();
this.panel10 = new Smobiler.Core.Controls.Panel();
this.panel1 = new Smobiler.Core.Controls.Panel();
this.labContent = new Smobiler.Core.Controls.Label();
this.image1 = new Smobiler.Core.Controls.Image();
this.panel2 = new Smobiler.Core.Controls.Panel();
this.image2 = new Smobiler.Core.Controls.Image();
this.label13 = new Smobiler.Core.Controls.Label();
this.image3 = new Smobiler.Core.Controls.Image();
this.image4 = new Smobiler.Core.Controls.Image();
this.image6 = new Smobiler.Core.Controls.Image();
this.label5 = new Smobiler.Core.Controls.Label();
this.label7 = new Smobiler.Core.Controls.Label();
this.label8 = new Smobiler.Core.Controls.Label();
this.label9 = new Smobiler.Core.Controls.Label();
this.panel4 = new Smobiler.Core.Controls.Panel();
this.label1 = new Smobiler.Core.Controls.Label();
this.labTitle = new Smobiler.Core.Controls.Label();
this.label6 = new Smobiler.Core.Controls.Label();
this.label2 = new Smobiler.Core.Controls.Label();
//
// title1
//
this.title1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(246)))), ((int)(((byte)(246)))));
this.title1.ImageType = Smobiler.Core.Controls.ImageEx.ImageStyle.FontIcon;
this.title1.Name = "title1";
this.title1.ResourceID = "angle-left";
this.title1.Size = new System.Drawing.Size(0, 30);
this.title1.Text = "Image";
this.title1.ImagePress += new System.EventHandler(this.title1_ImagePress);
//
// panel10
//
this.panel10.Controls.AddRange(new Smobiler.Core.Controls.MobileControl[] {
this.panel1,
this.panel2,
this.panel4,
this.labTitle,
this.label6,
this.label2});
this.panel10.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel10.Flex = 1;
this.panel10.Name = "panel10";
this.panel10.Scrollable = true;
this.panel10.Size = new System.Drawing.Size(0, 970);
//
// panel1
//
this.panel1.BackColor = System.Drawing.Color.White;
this.panel1.Border = new Smobiler.Core.Controls.Border(1F);
this.panel1.BorderColor = System.Drawing.Color.Silver;
this.panel1.BorderRadius = 5;
this.panel1.Controls.AddRange(new Smobiler.Core.Controls.MobileControl[] {
this.labContent,
this.image1});
this.panel1.Location = new System.Drawing.Point(123, 57);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(427, 243);
//
// labContent
//
this.labContent.BackColor = System.Drawing.Color.White;
this.labContent.BorderColor = System.Drawing.Color.White;
this.labContent.Location = new System.Drawing.Point(0, 166);
this.labContent.Name = "labContent";
this.labContent.Padding = new Smobiler.Core.Controls.Padding(5F);
this.labContent.Size = new System.Drawing.Size(427, 76);
this.labContent.Text = "ResourceID、ResourceMode、ResourcecPath属性设置图片资源名称、模式、路径\r\n上图控件ResourceID设置“logon1.png" +
"” ResourcePath设置image,显示的是项目下\\bin\\Debug\\Resources\\Image下的logon1.png";
//
// image1
//
this.image1.Location = new System.Drawing.Point(151, 39);
this.image1.Name = "image1";
this.image1.ResourceID = "logon1";
this.image1.Size = new System.Drawing.Size(97, 75);
//
// panel2
//
this.panel2.BackColor = System.Drawing.Color.White;
this.panel2.Border = new Smobiler.Core.Controls.Border(1F);
this.panel2.BorderColor = System.Drawing.Color.Silver;
this.panel2.BorderRadius = 5;
this.panel2.Controls.AddRange(new Smobiler.Core.Controls.MobileControl[] {
this.image2,
this.label13,
this.image3,
this.image4,
this.image6,
this.label5,
this.label7,
this.label8,
this.label9});
this.panel2.Location = new System.Drawing.Point(650, 57);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(427, 243);
//
// image2
//
this.image2.BackColor = System.Drawing.Color.LightGray;
this.image2.Location = new System.Drawing.Point(46, 12);
this.image2.Name = "image2";
this.image2.ResourceID = "logon1";
this.image2.Size = new System.Drawing.Size(50, 65);
this.image2.SizeMode = Smobiler.Core.Controls.ImageSizeMode.Default;
this.image2.Zooming = true;
//
// label13
//
this.label13.BackColor = System.Drawing.Color.White;
this.label13.BorderColor = System.Drawing.Color.White;
this.label13.Location = new System.Drawing.Point(0, 110);
this.label13.Name = "label13";
this.label13.Padding = new Smobiler.Core.Controls.Padding(5F);
this.label13.Size = new System.Drawing.Size(427, 133);
this.label13.Text = "sizeMode属性设置图片的显示模式\r\nDefault:图像不会放大;如果大于视图面积,那么会缩小图像,使其完全可见\r\nCover:在保持图片宽高比的前提下缩放" +
"图片,直到宽度和高度都大于等于容器视图的尺寸\r\nZoom:在保持图片宽高比的前提下缩放图片,直到宽度和高度都小于等于容器视图的尺寸\r\nStretch:拉伸图片且" +
"不维持宽高比,直到宽高都刚好填满容器";
//
// image3
//
this.image3.BackColor = System.Drawing.Color.LightGray;
this.image3.Location = new System.Drawing.Point(141, 12);
this.image3.Name = "image3";
this.image3.ResourceID = "logon1";
this.image3.Size = new System.Drawing.Size(50, 65);
this.image3.SizeMode = Smobiler.Core.Controls.ImageSizeMode.Cover;
//
// image4
//
this.image4.BackColor = System.Drawing.Color.LightGray;
this.image4.Location = new System.Drawing.Point(236, 12);
this.image4.Name = "image4";
this.image4.ResourceID = "logon1";
this.image4.Size = new System.Drawing.Size(50, 65);
//
// image6
//
this.image6.BackColor = System.Drawing.Color.LightGray;
this.image6.Location = new System.Drawing.Point(331, 12);
this.image6.Name = "image6";
this.image6.ResourceID = "logon1";
this.image6.Size = new System.Drawing.Size(50, 65);
this.image6.SizeMode = Smobiler.Core.Controls.ImageSizeMode.Stretch;
//
// label5
//
this.label5.Location = new System.Drawing.Point(47, 81);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(50, 29);
this.label5.Text = "Default";
//
// label7
//
this.label7.Location = new System.Drawing.Point(141, 81);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(50, 29);
this.label7.Text = "Cover";
//
// label8
//
this.label8.Location = new System.Drawing.Point(235, 81);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(50, 29);
this.label8.Text = "Zoom";
//
// label9
//
this.label9.Location = new System.Drawing.Point(329, 81);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(50, 29);
this.label9.Text = "Strentch";
//
// panel4
//
this.panel4.BackColor = System.Drawing.Color.White;
this.panel4.Border = new Smobiler.Core.Controls.Border(1F);
this.panel4.BorderColor = System.Drawing.Color.Silver;
this.panel4.BorderRadius = 5;
this.panel4.Controls.AddRange(new Smobiler.Core.Controls.MobileControl[] {
this.label1});
this.panel4.Location = new System.Drawing.Point(123, 357);
this.panel4.Name = "panel4";
this.panel4.Size = new System.Drawing.Size(427, 179);
//
// label1
//
this.label1.BackColor = System.Drawing.Color.White;
this.label1.BorderColor = System.Drawing.Color.White;
this.label1.Location = new System.Drawing.Point(0, 57);
this.label1.Name = "label1";
this.label1.Padding = new Smobiler.Core.Controls.Padding(5F);
this.label1.Size = new System.Drawing.Size(427, 54);
this.label1.Text = "Refresh重新加载资源(当资源图片修改,而ResouceID不变的情况下,需要调用重新加载来刷新图片)";
//
// labTitle
//
this.labTitle.BackColor = System.Drawing.Color.White;
this.labTitle.Bold = true;
this.labTitle.Border = new Smobiler.Core.Controls.Border(0F, 0F, 0F, 1F);
this.labTitle.BorderColor = System.Drawing.Color.White;
this.labTitle.FontSize = 16F;
this.labTitle.Location = new System.Drawing.Point(123, 30);
this.labTitle.Name = "labTitle";
this.labTitle.Size = new System.Drawing.Size(427, 26);
this.labTitle.Text = "图像控件";
//
// label6
//
this.label6.BackColor = System.Drawing.Color.White;
this.label6.Bold = true;
this.label6.Border = new Smobiler.Core.Controls.Border(0F, 0F, 0F, 1F);
this.label6.BorderColor = System.Drawing.Color.White;
this.label6.FontSize = 16F;
this.label6.Location = new System.Drawing.Point(650, 30);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(427, 26);
this.label6.Text = "不同SizeMode 的图片";
//
// label2
//
this.label2.BackColor = System.Drawing.Color.White;
this.label2.Bold = true;
this.label2.Border = new Smobiler.Core.Controls.Border(0F, 0F, 0F, 1F);
this.label2.BorderColor = System.Drawing.Color.White;
this.label2.FontSize = 16F;
this.label2.Location = new System.Drawing.Point(123, 330);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(427, 26);
this.label2.Text = "重新加载方法";
//
// demoImage
//
this.BackColor = System.Drawing.Color.White;
this.Controls.AddRange(new Smobiler.Core.Controls.MobileControl[] {
this.title1,
this.panel10});
this.Layout = Smobiler.Core.Controls.LayoutPosition.Relative;
this.Size = new System.Drawing.Size(1200, 800);
this.Name = "demoImage";
}
#endregion
private Smobiler.Core.Controls.Title title1;
private Smobiler.Core.Controls.Panel panel10;
private Smobiler.Core.Controls.Panel panel1;
private Smobiler.Core.Controls.Label labContent;
private Smobiler.Core.Controls.Image image1;
private Smobiler.Core.Controls.Panel panel2;
private Smobiler.Core.Controls.Image image2;
private Smobiler.Core.Controls.Panel panel4;
private Smobiler.Core.Controls.Label label1;
private Smobiler.Core.Controls.Label labTitle;
private Smobiler.Core.Controls.Label label6;
private Smobiler.Core.Controls.Label label13;
private Smobiler.Core.Controls.Image image3;
private Smobiler.Core.Controls.Image image4;
private Smobiler.Core.Controls.Image image6;
private Smobiler.Core.Controls.Label label5;
private Smobiler.Core.Controls.Label label7;
private Smobiler.Core.Controls.Label label8;
private Smobiler.Core.Controls.Label label9;
private Smobiler.Core.Controls.Label label2;
}
}