第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

如何從主窗體上的按鈕調(diào)用 UserControl 中的函數(shù) C#

如何從主窗體上的按鈕調(diào)用 UserControl 中的函數(shù) C#

C#
慕田峪7331174 2023-09-16 15:04:38
我有一個帶有用戶控件的主窗體,當(dāng)按下用戶控件上的面板時,會顯示圖像。我想在主窗體上創(chuàng)建一個按鈕,當(dāng)我按下它時,之前出現(xiàn)的圖像再次隱藏(就像用戶控件第一次初始化時一樣)我在用戶控件中創(chuàng)建了一個類(這是項目的一部分),并在其中創(chuàng)建了一個函數(shù)來隱藏圖像(如果它們已經(jīng)出現(xiàn))。以下代碼沒有顯示錯誤,但不起作用。請你幫助我好嗎?public partial class Form1 : Form    {        public Form1()        {            InitializeComponent();          }        private void button_reset_Click(object sender, EventArgs e)        {            UserControl_axi user_ax = new UserControl_axi();            UserControl_axi.Rst_userControl.Rst_Axi(user_ax);public class Rst_userControl         {            public static void Rst_Axi(UserControl_axi rst)            {                rst.pictureBox5.Hide();                rst.pictureBox6.Hide();           }        }
查看完整描述

1 回答

?
繁華開滿天機

TA貢獻1816條經(jīng)驗 獲得超4個贊

起初,我覺得有些事情很奇怪:為什么要在按鈕操作中創(chuàng)建其他用戶控件?它不是您在加載表單時可能看到的表單,因為它是在您的方法中創(chuàng)建的,然后在完成后刪除。

您的表單中必須有另一個UserControl_axi變量/實例,并且這是您必須在Rst_Axi方法中用作參數(shù)的變量/實例


private void button_reset_Click(object sender, EventArgs e)

{

    // New user control user_ax ???? -> To be removed

    UserControl_axi user_ax = new UserControl_axi();

    // Changes applied to an "invisible" user_ax -> Argument to be replaced with the property of your Form of type UserControl_axi

    UserControl_axi.Rst_userControl.Rst_Axi(user_ax);

    // After this user_ax will be destroyed

}

此外,如果你的Rst_userControl類除了聲明該方法之外沒有其他用途,Rst_Axi我建議你放棄它并直接聲明Rst_Axi()為UserControl_axi. 因為你這樣做的方式太過分了:)


public partial class UserControl_axi

{

    // Not static anymore 

    public void Rst_Axi()

    {

         // No arguments because pictureBox5 and pictureBox6 are properties of the current usercontrol

         this.pictureBox5.Hide();

         this.pictureBox6.Hide();

    }

}

并打電話


private void button_reset_Click(object sender, EventArgs e)

{

     // Use the property in your form related to the UserControl_axi and call its reset method

     this.userControl_axio1.Rst_Axi();

}


查看完整回答
反對 回復(fù) 2023-09-16
  • 1 回答
  • 0 關(guān)注
  • 158 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號