Search results for query: *

  1. lynxAi

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

    <Label x:Name="web" Text="{Binding Website}" FontSize="Body" Grid.Row="1" Grid.Column="0" /> <Label x:Name="Pwd" Text="{Binding Password}" FontSize="Body" Grid.Row="1" Grid.Column="3" /> The two labels still don't show up, although I'm sure when debugging that they are indeed getting data.
  2. 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...
  3. lynxAi

    How to import different pictures in many pictureboxe?

    int Num = 0; PictureBox[] pb; Num = 52; pb = new PictureBox[Num]; for (int i = 1; i < Num; i++) { pb[i] = new System.Windows.Forms.PictureBox(); pb[i].BorderStyle = BorderStyle.FixedSingle...
  4. 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?
  5. 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...
  6. lynxAi

    "Cannot implicitly convert string to string []"

    Oh o_O, there is only one "s" missing. The typing system automatically recommends these two words. I was wrong. Thank you for your help, in fact your first reply has already been answered.
  7. lynxAi

    "Cannot implicitly convert string to string []"

    I think him right.
  8. lynxAi

    "Cannot implicitly convert string to string []"

    Can you help me correct this mistake? I will send you a document. It will delay you for 2 minutes. Ok? I will find your changes and then understand the solution
  9. lynxAi

    "Cannot implicitly convert string to string []"

    This is the code I saw in the instructional video. I haven’t changed it at all, but he didn’t make any mistakes. I have it. The .net version is also the same. Will it be other reasons. Can you say simpler and clearer? Thank you
  10. 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()...
  11. lynxAi

    extremely simply WhakeTheHole

    whakeMole demo.zip
  12. 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...
  13. 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