简体   繁体   中英

How to get the text of textbox to textblock in another xaml? c# windows store app

Code in my MainPage.xaml

<TextBox x:Name="txtBox1" HorizontalAlignment="Left" 
        Margin="376,350,0,0" TextWrapping="Wrap" 
        VerticalAlignment="Top" Height="14" Width="113" 
        Text="{Binding TextBox1Text}"/>

Code in my MainPage.xaml.cs

public string TextBox1Text
{
    get { return this.txtBox1.Text; }
    set { this.txtBox1.Text = value; }
}   

Code in my Page2.xaml

MainPage main = new MainPage();
protected override void OnNavigatedTo(NavigationEventArgs e)
{
    txtBlock1.Text = main.TextBox1Text;
}

when i run this there no text that output in my textblock

A simpler way to do that is to pass parameters between pages:

MainPage.xaml.cs :

private void Button_Click(object sender, RoutedEventArgs e)
{
    Frame.Navigate(typeof(Page2), textBox1.Text);
}

And in Page2.xaml.cs :

protected override void OnNavigatedTo(NavigationEventArgs e)
{
    textBlock1.Text = e.Parameter.ToString();
}

Edit : It appears that you want to pass multiple parameters. You can package multiple objects in a List<T> collection or create a class:

public class NavigationPackage
{
    public string TextToPass { get; set; }
    public ImageSource ImgSource { get; set; }
}

In your current page:

private void Button_Click(object sender, RoutedEventArgs e)
{
    NavigationPackage np = new NavigationPackage();
    np.TextToPass = textBox1.Text;
    np.ImgSource = bg2.Source;

    Frame.Navigate(typeof(MultiGame), np);
 }

In MultiGame.cs you can "unpack" the items from the class:

protected override void OnNavigatedTo(NavigationEventArgs e)
{
    NavigationPackage np = (NavigationPackage)e.Parameter;

    newTextBlock.Text = np.TextToPass;
    newImage.Source = np.ImgSource;
}

You are creating a new instance of MainPage . TextBox1Text isn't initialized with a value.

If you want it to be a value shared across all of your pages either create a static class or declare your property in the App.cs file

This would be the same as saying.

MyCustomClass x = new MyCustomClass();
x.StringProperty = "Im set";

x = new MYCustomClass();

x.StringProperty isn't set now.

Try this: In MainPage.cs

public static MainPage current;

public static Textbox txtbox

Public mainpage()
{
     Current = this;
     txtbox = this.yourtextboxInXAML;
}

In page2.cs

public Mainpage.Current.txtbox txtbox;

Now you can use your Mainpage XAML textbox in page2 when ever you want.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM