Search results for query: *

  • Users: lynxAi
  • Content: Threads
  • Order by date
  1. lynxAi

    How to binding more than one string in a frame, using ObservableCollection

    model: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PasswordSaver.Models { public class info { public static string[] Text { get; set; } = new string[2]; } } ViewModel: using...
  2. lynxAi

    How to import different pictures in many pictureboxe?

    See title, I have 52 Picturebox controls, How to batch add pictures to these 52 Pictureboxes?
  3. lynxAi

    C++ Letter to password

    To translate "China" into a password, the decoding rule is: replace the original letter with the fourth letter after the original letter. For example, the fourth letter after the letter "a" is "e". Replace "a" with "e". Therefore, "China" should be translated as "glmre". Please write a program...
  4. lynxAi

    "Cannot implicitly convert string to string []"

    public partial class Form1 : Form { string[] paths, files; // Define two arrays. public Form1() { } private void OpenFile_Click(object sender, EventArgs e) { OpenFileDialog dialog = new OpenFileDialog()...
  5. lynxAi

    extremely simply WhakeTheHole

    public partial class Form1 : Form { int score = 0; int miss = 0; Random rabg = new Random(); int location = 0; bool HitClick = false; public Form1() { InitializeComponent(); } private void Start_Click(object...
  6. lynxAi

    Question C#game. whack a mole

    the simply whake the mole private void moveMole() { isHit = false; Mole.Enabled = true; Mole.Image = Properties.Resources.Mole; Mole.BackColor = System.Drawing.Color.Transparent; locationNum = rabg.Next(1,7)...
Back
Top Bottom