Link to home
Start Free TrialLog in
Avatar of dma111
dma111

asked on

WPF C# Visual Studio code events dropdown

How can I make the dropdowns at the top of the WPF C# Visual Studio code editor show events, e.g. DataTable_ColumnChanged (when a DataTable is selected in the left dropdown)?  
private void CustomerDataTable_ColumnChanged(object sender, System.Data.DataColumnChangeEventArgs e)
                {
                    if (object.ReferenceEquals(e.Column, this.LastNameColumn))
                    {
                        this.CheckLastName((CustomerRow)e.Row);
                    }
                }

Open in new window

Avatar of Bob Learned
Bob Learned
Flag of United States of America image

Can you attach a .png screen shot for what you mean?
There is not DataTable control available in WPF are you sure you're dealing with WPF application?
Avatar of dma111
dma111

ASKER

See attached .png.

Dropdown on right doesn't show the Loaded event.  Dropdown on left shows only Window1.
VS-Editor-DropDown.png
ASKER CERTIFIED SOLUTION
Avatar of Bob Learned
Bob Learned
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of dma111

ASKER

Got it -- but it's the Properties pane, not Solution Explorer, when an object is selected in the Design window.  Thanks.