代码搜索:PictureBox
找到约 1,286 项符合「PictureBox」的源代码
代码结果 1,286
www.eeworm.com/read/352254/10570064
cs formlogin.designer.cs
namespace Financial
{
partial class FormLogin
{
///
/// 必需的设计器变量。
///
private System.ComponentModel.IContainer components = null;
www.eeworm.com/read/107499/7070521
frm maker.frm
VERSION 4.00
Begin VB.Form Form1
Caption = "Maze Maker"
ClientHeight = 7530
ClientLeft = 1335
ClientTop = 2085
ClientWidth = 9945
Height
www.eeworm.com/read/458636/7293052
cs form1.cs
/* -----------------------------------------------------------------
*
* LED initialization code written by Levent S.
* E-mail: ls@izdir.com
*
* This code is provided without implied warr
www.eeworm.com/read/330251/12904765
cs welcomeform.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Threading;
n
www.eeworm.com/read/242302/13079915
txt 如何改变某些控件的边框颜色.txt
的 确 没 有 这 样 的 属 性 。 按 照 标 准 的 做 法 , 应 该 采 用 自 绘 控 制 , 即 响 应 WM_DRAWITEM消 息 。 不 过 这 种 办 法 对 VB来 说 相 当 麻 烦 。 如 果 你 确 有 需 要 , 可 以 使 用 PictureBox来 模 仿 按 钮 等 控 件 , 这 时 你 可 以 自 己 绘 制 边 框 。
对 于 Label控
www.eeworm.com/read/324348/13270901
cs loginfrm.designer.cs
namespace AttendManager
{
partial class LoginFrm
{
///
/// 必需的设计器变量。
///
private System.ComponentModel.IContainer components = null
www.eeworm.com/read/320976/13414683
cs formlogin.designer.cs
namespace Financial
{
partial class FormLogin
{
///
/// 必需的设计器变量。
///
private System.ComponentModel.IContainer components = null;
www.eeworm.com/read/406260/11445609
cs loginform.designer.cs
namespace login
{
partial class loginform
{
///
/// 必需的设计器变量。
///
private System.ComponentModel.IContainer components = null;
www.eeworm.com/read/158504/11609383
vb frmmain.vb
Option Strict On
Option Explicit On
' ******************* SnakeDotNet *******************
' File: frmMain.vb
' Version: 1.0
' Author: Tim Overbay
' Date
www.eeworm.com/read/151211/12228157
txt 06(1).txt
VB游戏写作技巧(1)秀图篇
一开始,我想先从游戏的图形先讲起好了,毕竟游戏最重要的就是画面,一个没有漂亮图形的游戏,我连碰都不想去碰。那该怎么处理游戏的图形呢?VB提供了一个非常好用的控制项--<mark>PictureBox</mark>,有了这个控制项我们才能轻松的在程式中秀出图形,现在就来看看<mark>PictureBox</mark>有那些特性可以让我们在游戏中使用。
Picture 属性:只要将这个属性填入正常的图形档名,V ...