התחברות בAPI לאתר OfficeGuy מאקסס
-
זה הקוד המלא
using System; using System.Collections.Generic; using System.Configuration; using System.Data; using System.Linq; using System.Threading.Tasks; using System.Windows; using System.Windows.Navigation; namespace tchumim { /// <summary> /// Interaction logic for App.xaml /// </summary> public partial class App : Application { public App() { var win = new Window(); win.Content = "123"; win.Show(); } } }
-
@WWW אמר בהתחברות בAPI לאתר OfficeGuy מאקסס:
@dovid אמר בהתחברות בAPI לאתר OfficeGuy מאקסס:
אני לא מבין למה זה קורה. אני מרים ידיים.
רק אציין שאני פעלתי לפי ההוראות שלך, וקיבלתי חלון עם 123.
תשלח צילום של הקוד שלך בבקשה
תודה -
using System; using System.Collections.Generic; using System.Configuration; using System.Data; using System.Linq; using System.Threading.Tasks; using System.Windows; namespace test { /// <summary> /// Interaction logic for App.xaml /// </summary> public partial class App : Application { public App() { var win = new Window(); win.Content = "עובד?"; win.Show(); } } }
וזה הXML:
<Application x:Class="test.App" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:test"> <Application.Resources> </Application.Resources> </Application>
-