Hello world c# PWF

Hello world c# PWF - Windows Phone - Programmation

Marsh Posté le 07-11-2014 à 19:12:56    

Salut, je suis débutante, je fais ma première app c# wpf :)
voici ce que j'ai fais :
 
namespace MyApp
{
  public partial class MainPage : PhoneApplicationPage
  {
    public MainPage()
    {
        InitializeComponent();
 
        Title = "Page1";
        Height = 500;
        Width = 500;
 
        TextBox NameTxtBox = new TextBox();
        NameTxtBox.Width = 300;
 
        Button Button1 = new Button();
        Button1.Content = "ok";
 
        TextBlock TxtBlock = new TextBlock();
        TxtBlock.Width = 300;
 
        StackPanel MyStackPanel = new StackPanel();
        MyStackPanel.Margin = new Thickness(10);
        MyStackPanel.Height = 500;
        MyStackPanel.Width = 500;
        MyStackPanel.Children.Add(NameTxtBox);
        MyStackPanel.Children.Add(ValidateButton);
        MyStackPanel.Children.Add(TxtBlock);
 
        Content = MyStackPanel;
    }
  }
}
 
Dans textbox il faudrait écrire son nom, et en en faisant un click sur le bouton, dans textblock, on aurait le texte 'Hello' + le nom rentré dans la textbox.  
 
J'ai pas encore les notions, je dois faire un bouton_click en dehors de public mainpage(), mais comment accèder a textblock ?

Reply

Marsh Posté le 07-11-2014 à 19:12:56   

Reply

Marsh Posté le 13-11-2014 à 12:28:39    

Salut,
 
Utilise les balise cpp pour plus de lisibilité au niveau de ton code.
 
Normalement pour récupèrer ton text entrer dans ta textBox tu fait  

Code :
  1. string textRecuperer;
  2. textRecuperer = NameTxtBox.Text;


 
Ces deux ligne de code doivent être donc dans ton event bouton_click();
 
Pour ne pas te prendre la tête je te conseille de tout faire dans le main pour commencer.
Ensuite une bonne factorisation de ton code sera essentiel.


---------------
Made you your own sentence without believing that of the others...
Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed