代码搜索结果
找到约 10,000 项符合
Screen 的代码
rowedito.def
DEFINITION MODULE RowEditor;
(********************************************************)
(* *)
(* Screen data capture, for a single row *)
(* *)
(* Programmer: P. Moylan
stdafx.cpp
// stdafx.cpp : source file that includes just the standard includes
// Screen.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h"
702.cpp
//702.CPP //demo iostream
#include
#include
main(void)
{
cout
dpi34.htm
DELPHI中自适应表单的实现
dpi21.htm
用DELPHI设计屏幕保护程序
picture.java
import java.awt.*;
public class Picture extends java.applet.Applet {
Image searchImage;
public void init() {
searchImage = getImage(getCodeBase(), "faulkner.jpg");
}
draw.java
import java.awt.*;
public class Draw extends java.applet.Applet {
Button erase = new Button("Erase");
DrawPanel canvas;
public void init() {
canvas = new DrawPanel(getImag
crosshair.java
import java.awt.*;
public class CrossHair extends java.applet.Applet {
String mark = "+";
public void paint(Graphics screen) {
Dimension appletWindow = size();
int hei
oval.java
import java.awt.*;
public class Oval extends java.applet.Applet {
public void paint(Graphics screen) {
setBackground(Color.white);
screen.setColor(Color.black);
for
plot.java
import java.awt.*;
public class Plot extends java.applet.Applet {
Label statLabel = new Label("Current Statistics:");
Graph stats = new Graph();
public void init() {
B