|
visible: Belgi sistema trayida kórinedime yamasa joqpa
|
bet | 5/9 | Sana | 20.05.2024 | Hajmi | 249,48 Kb. | | #244606 |
Bog'liq 2k1.Bazarbaev.Sharapatvisible: Belgi sistema trayida kórinedime yamasa joqpa.
ContextMenu: NotifyIcon ushın kontekst menyusın belgileydi.
BalloonTipIcon: Eskertiw pufagini ushın isletiletuǵın belgi túri (None, Info, Warning, Error).
BalloonTipText: Eskertiw pufagini teksti.
BalloonTipTitle: Eskertiw pufagini bası.
Bul komponentlerdi Windows Forms programmasında isletiw ushın, olardı programma dizayneridan tartıp alıp, forma ústine qoyıw kerek. Keyin, kerekli ayrıqshalıqlardı sazlaw arqalı olardı programmada isletiw múmkin
Windows Forms programmasında PictureBox hám NotifyIcon komponentlerin kod arqalı jaratıw júdá ańsat. Tómendegi mısallar sizge bul komponentlerdi qanday jaratıw hám olardıń tiykarǵı qásiyetlerin qanday sazlawdı kórsetedi.
PictureBox komponentin jaratıw ushın :
Private void Form1_Load (object sender, EventArgs e)
{
// PictureBox jaratıw
PictureBox picture = new PictureBox
{
Name = " pictureBox",
Size = new Size (160, 160 ), // Ólshemlerin belgilew
Location = new Point (100, 100), // Jaylasıwın belgilew
Image = Image. FromFile (" súwret.jpg"), // Súwretti júklew
SizeMode = PictureBoxSizeMode. StretchImage // Súwretti PictureBox ólshemine maslastırıw
};
// PictureBox'ni forma kontrollerine qosıw
this. Controls. Add (picture);
}
\NotifyIcon komponentin jaratıw ushın :
Private void Form1_Load (object sender, EventArgs e)
{
// NotifyIcon jaratıw
NotifyIcon trayIcon = new NotifyIcon
{
Icon = new Icon (" icon. ico"), // Belgi júklew
Text = " Programma isleyapti", // Tıshqanchaning kórsetkishi ústinde shıǵıs tekst
|
| |