问题
This is the context of my controls:
/*
Form
StatusStrip
ToolStripStatusLabel
TableLayoutPanel
MyGenioView
*/
So, MyGenioView is intercepting the MouseMove event handler. The code that is already there is for a rubber band rectangle. So I have:
public void MyMouseMove(Object sender, MouseEventArgs e)
{
Point ptCurrent = new Point(e.X, e.Y);
// If we "have the mouse", then we draw our lines.
if (m_bHaveMouse)
{
// If we have drawn previously, draw again in
// that spot to remove the lines.
if (m_ptLast.X != -1)
{
MyDrawReversibleRectangle(m_ptOriginal, m_ptLast);
}
// Update last point.
m_ptLast = ptCurrent;
// Draw new lines.
MyDrawReversibleRectangle(m_ptOriginal, ptCurrent);
}
// New code here
}
What I can't get my head around is that I want to set the value of statusStrip1.statusLabel
from the MyGenioView MouseMove
handler. I can't work out how to do it.
The code I want to use is:
OdGePoint3d pt = GetWorldCoordinates(ptCurrent);
String strCoordinate = String.Format("{0},{1}", ptCurrent.X, ptCurrent.Y);
But what is the right way to feed it to the main forms statusStrip
object?
Thanks for your help.
Update:
I know how to set the text of a statusStrip label object. That is not my issue. My issue is related to context of my mouse handler event and it's relationship to the form. Please see the context of the controls as described at the start of the question. The comments so far have not taken that into account.
This is the current place in the form that I create the MyGenioView
object (that receives the mouse handler):
private void viewToolStripMenuItem_Click(object sender, EventArgs e)
{
OdDbDatabase TDDatabase = m_oGenioView.GetDatabase();
if (m_oGenioViewCtrl != null)
m_oGenioViewCtrl.DeleteContext();
tableLayoutPanel.RowCount = 1;
tableLayoutPanel.ColumnCount = 1;
m_oGenioViewCtrl = new MyGenioView();
m_oGenioViewCtrl.TDDatabase = TDDatabase;
m_oGenioViewCtrl.ResetDevice(true);
m_oGenioViewCtrl.Dock = DockStyle.Fill;
m_oGenioViewCtrl.Margin = new Padding(1);
tableLayoutPanel.Controls.Add(m_oGenioViewCtrl);
}
回答1:
You have multiple options to update status:
- Inject an
Action<Point>
in the user control - Create a
StatusUpdate
event in the user control - You also can access the control using hierarchy of controls, for example in the user control
this.ParentForm
is your parent form and you can find the target control usingControls
collection or by making it public in the form.
The first two options are much better because decouple your control from the form and your user control can be used on many forms and other containers this way. Providing a way of updating status is up to container.
The best option is creating and consuming the event.
1- Inject an Action<Point>
in the user control
Inject an Action<Point>
in the user control and use it in MouseMove
. To do so, put this in User Control:
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public Action<Point> StatusUpdate{ get; set; }
//Don't forget to assign the method to MouseMove event in your user control
private void UserControl1_MouseMove(object sender, MouseEventArgs e)
{
if (StatusUpdate!= null)
StatusUpdate(e.Location);
}
And put this code on Form:
private void Form1_Load(object sender, EventArgs e)
{
this.userControl11.StatusUpdate= p => this.toolStripStatusLabel1.Text=p.ToString();
}
2- Create a StatusUpdate
event in the user control
Create a StatusUpdate
event in the user control and raise it in MouseMove
and consume the event in the form. Also you can use the MouseMove
event itself.
To do so, put this code in user control:
public event EventHandler<MouseEventArgs> StatusUpdate;
public void OnStatusUpdate(MouseEventArgs e)
{
var handler = StatusUpdate;
if (handler != null)
handler(this, e);
}
//Don't forget to assign the method to MouseMove event in your user control
private void UserControl1_MouseMove(object sender, MouseEventArgs e)
{
OnStatusUpdate(e);
}
And then put in form, put this code:
//Don't forget to assign the method to StatusUpdate event in form
void userControl11_StatusUpdate(object sender, MouseEventArgs e)
{
this.toolStripStatusLabel1.Text = e.Location.ToString();
}
来源:https://stackoverflow.com/questions/37483278/how-do-i-feed-values-to-the-statusstrip-from-a-form-control