יב - פרויקטיםהחומרים של היום–18.10.2020 18 אוק 202018 אוק 2020 תלמידים יקרים ההקלטה של היום עולה מיד ל-drive של google classroom שלנו קישור לסרטון תוכן עניינים MainActivity. 1 XML. 1 JAVA. 6 MyPaint 7 XML. 7 JAVA. 11 MyShape.…
יב - פרויקטיםהמשך מיני הפרויקט שלנו–השיעור של 22.9.2020 23 ספט 202023 ספט 2020 קישור לסרטון החלון הראשי (main_activity) העיצוב (XML) <?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#567DA64D" tools:context=".MainActivity"> <TextView android:id="@+id/mainTitle" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="אפליקצית המשחקים שלי" android:layout_centerHorizontal="true" android:gravity="center" android:textSize="24sp" android:layout_margin="10dp" > …
יב - פרויקטיםהשיעור של היום–21.9.2020 21 ספט 2020 קישור להקלטה קובץ העיצוב <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <TextView android:id="@+id/mainTitle" android:layout_width="match_parent" …
יב - פרויקטיםשינוי רקע של כפתור 15 ספט 2020 public void changeBack(View view) { count++; count = count % 3; if (count == 1) b1.setBackground(getDrawable(R.drawable.xpic)); if (count == 2) b1.setBackground(getDrawable(R.drawable.circlepic)); if (count == 0) b1.setBackground(getDrawable(R.drawable.blank));}
יב - פרויקטיםהדפסות – הקדמה 29 דצמ 201929 דצמ 2019 private void PrintBTN_Click(object sender, EventArgs e) { printPreviewDialog1.ShowDialog(); } private void PrintDocument1_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e) …
יב - פרויקטיםשינוי כיוון מס טלפון ב dataGridView 29 דצמ 201929 דצמ 2019 שינוי כיוון של מס טלפון ב DGV קישור לקובץ דוגמה
יב - פרויקטיםמשימות מרתון 24 פבר 201924 פבר 2019 משימות להיום יש ללמוד את הנושא, להבין אותו לעומק, להכין מצגת הסבר + דוגמאות, ולהעביר לכיתה היום !! סד. שם התלמיד נושא קישורים הערות 1 עין דור Layout https://youtu.be/4N4bCdyGcUc…
יב - פרויקטיםandroid relative layuot + listView 19 פבר 2019 תלמידים יקרים בשני הסרטונים הבאים תמצאו את דוגמאות לדברים שדיברנו עליהם Relative Layout ListView יש להוסיף לאפליקציה שלכם את שני האלמנטים המדוברים
יב - פרויקטיםאנדרויד 1 17 פבר 2019 public class MainActivity extends AppCompatActivity { private TextView tv1; private Button btn1; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); tv1 = (TextView) findViewById(R.id.txt1); btn1 = (Button) findViewById(R.id.b1); btn1.setOnClickListener(new View.OnClickListener(){…
יב - פרויקטיםfireBase–part 1 11 דצמ 201812 דצמ 2018 Product win using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using FireSharp.Config; using FireSharp.Interfaces; using FireSharp.Response; using Firebase.Database;…
יב - פרויקטיםעגלת קניות 25 נוב 2018 namespace CoffeShop { public partial class cartWin : Form { dbEntities db = new dbEntities(); orderView currOrder; public cartWin() { InitializeComponent(); …