gpt4 book ai didi

c# 在应用程序中添加一个 PayPal 捐赠按钮

转载 作者:太空狗 更新时间:2023-10-29 21:01:55 28 4
gpt4 key购买 nike

我想在我的应用程序中添加 PayPal Donate 按钮,但我不知道如何操作。我尝试在谷歌和 PayPal 网站上搜索,但没有找到解决方案。你有什么建议吗 ?

最佳答案

我在那个网站上找到了解决方案:http://www.gorancic.com/blog/net/c-paypal-donate-button :

private void btnDonate_Click(object sender, System.EventArgs e)
{
string url = "";

string business = "my@paypalemail.com"; // your paypal email
string description = "Donation"; // '%20' represents a space. remember HTML!
string country = "AU"; // AU, US, etc.
string currency = "AUD"; // AUD, USD, etc.

url += "https://www.paypal.com/cgi-bin/webscr" +
"?cmd=" + "_donations" +
"&business=" + business +
"&lc=" + country +
"&item_name=" + description +
"&currency_code=" + currency +
"&bn=" + "PP%2dDonationsBF";

System.Diagnostics.Process.Start(url);
}

关于c# 在应用程序中添加一个 PayPal 捐赠按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18401786/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com