To Examples
DiceDisplay Example, source code file Dice.cs
using System; ///
/// DiceDisplay Example, source code file Dice.cs /// Simulate the roll of a single 6-sided die. ///
namespace DiceDisplay { public class Dice { // private instance variables. private int _face1, _face2; private Random r = new Random(); // Noarg constructor // Newly created die object has a random value public Dice() { Roll(); } // Read only properties public int Face1 { get { return _face1; } } public int Face2 { get { return _face2; } } // Public method public void Roll() { _face1 = r.Next(1, 7); _face2 = r.Next(1, 7); } } }
DiceDisplay Example, source code file Form1.cs
using System; using System.Drawing; using System.Windows.Forms; namespace DiceDisplay { ///
/// DiceDisplay Example, source code file Form1.cs /// Display the results of dice rolls. ///
public partial class Form1 : Form { // Use Dice object to obtain results of dice rolls. private Dice dice = new Dice(); // Create an array of face to contain images. // Only the indices 1, 2, 3, 4, 5, 6 are used (not 0). Image[] face = new Image[7]; public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { // Load face images from files. for (int i = 1; i <= 6; i++) { face[i] = Image.FromFile("../../" + i + ".jpg"); } // Initialize dice to ones. picDie1.Image = face[1]; picDie2.Image = face[1]; } private void btnRollDice_Click(object sender, EventArgs e) { // Roll dice. dice.Roll(); // Display values of dice. int valueShowing1 = dice.Face1; int valueShowing2 = dice.Face2; // Display values of dice in pictureboxes. picDie1.Image = face[valueShowing1]; picDie2.Image = face[valueShowing2]; } } }
DiceDisplay Example, source code file Form1.Designer.cs
namespace DiceDisplay { ///
/// DiceDisplay Example, source code file Form1.Designer.cs ///
partial class Form1 { ///
/// Required designer variable. ///
private System.ComponentModel.IContainer components = null; ///
/// Clean up any resources being used. ///
///
true if managed /// resources should be disposed; otherwise, false. /// protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code ///
/// Required method for Designer support - do not modify /// the contents of this method with the code editor. ///
private void InitializeComponent() { this.picDie1 = new System.Windows.Forms.PictureBox(); this.picDie2 = new System.Windows.Forms.PictureBox(); this.btnRollDice = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.picDie1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.picDie2)).BeginInit(); this.SuspendLayout(); // // picDie1 // this.picDie1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.picDie1.Location = new System.Drawing.Point(12, 12); this.picDie1.Name = "picDie1"; this.picDie1.Size = new System.Drawing.Size(90, 90); this.picDie1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.picDie1.TabIndex = 0; this.picDie1.TabStop = false; // // picDie2 // this.picDie2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.picDie2.Location = new System.Drawing.Point(127, 12); this.picDie2.Name = "picDie2"; this.picDie2.Size = new System.Drawing.Size(90, 90); this.picDie2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.picDie2.TabIndex = 1; this.picDie2.TabStop = false; // // btnRollDice // this.btnRollDice.Font = new System.Drawing.Font( "Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnRollDice.Location = new System.Drawing.Point(12, 108); this.btnRollDice.Name = "btnRollDice"; this.btnRollDice.Size = new System.Drawing.Size(205, 43); this.btnRollDice.TabIndex = 2; this.btnRollDice.Text = "Roll Dice"; this.btnRollDice.UseVisualStyleBackColor = true; this.btnRollDice.Click += new System.EventHandler(this.btnRollDice_Click); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(256, 171); this.Controls.Add(this.btnRollDice); this.Controls.Add(this.picDie2); this.Controls.Add(this.picDie1); this.Name = "Form1"; this.Text = "DiceDisplay Example"; this.Load += new System.EventHandler(this.Form1_Load); ((System.ComponentModel.ISupportInitialize)(this.picDie1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.picDie2)).EndInit(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.PictureBox picDie1; private System.Windows.Forms.PictureBox picDie2; private System.Windows.Forms.Button btnRollDice; } }