button

  1. skanie

    Question How to set a custom font style for a button

    The bottom line is that everything works fine with the text, but the font is not transferred to the buttons and is default font after compilation app.xaml <Application.Resources> <Style x:Key="Hatten"> <Setter Property="TextElement.FontFamily"...
  2. MichielJN

    Resolved Problem programming buttons

    public void BerekenTafelTegels() { if (Program.Tafel2.Count == 0) { } else if (Program.Tafel2.Count > 0) { int index = 0; foreach (List<Tegel> tafelTegels in Program.Tafel2) { if (tafelTegels.Count > 0) {...
  3. C

    Error 404 when pressing button

    This is my first ASP.NET Core project. I started with adding a button that will check if it is clicked. It will print a YES when it's clicked. but when I hit the button, I got into this Error 404 page. What did I do wrongly? @{ ViewData["Title"] = "Index"; } <form class="text-center">...
  4. SRX

    How to use styles inside a DLL?

    Hello everyone, this is my first post here, so here it is, I'm making a DLL for me, to ease my job, because there are classes that I use in every project, so why should i duplicate them, when I can use one DLL to finish the job, I also wanted to add some controls to it, buttons, so its like...
  5. F

    Save a picture from pictureBox to my PC

    Hi, I have a picture showing in a "pictureBox1" in my program, does anyone know how to save the picture from a "pictureBox" to the PC when a button is pressed?
  6. A

    Question RPM Calculator stack implemntation

    I am new to Csharp I am implmenting RPN calculator. The problem is i need to implem,ent this in 4 stacks .i ned help in implementation I have a multiline textbox .suppose i have pressed 2 and pressed enter it should got into 2 second line from bottom , 3 and enter (it should go 1 line from...
Back
Top Bottom