我只是想知道最简单的方法来将我的应用程序转换为可以放入Android手机的移动友好版本。任何帮助和指针,将不胜感激。
我知道使用Windows窗体很容易,但我必须使用wpf应用程序,所以它可能更难,因为我似乎找不到任何东西.谢谢
所以我要做的是将输出打印到文本框但是发生的事情是它始终使用它找到的最后一个textbox2.text因为我假设每次打印它都会覆盖最后一个输出.我正在寻找某种工作方式
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Web;
using System.Net;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
namespace ProgrammingProject
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
private void btn_getinfo_Click(object sender, RoutedEventArgs e)
{
string UserInput = "76561198056932916";
// string UserInput = textBox.Text;
ProfileSummary(UserInput);
}
public …Run Code Online (Sandbox Code Playgroud)