コード例 #1
0
 /// <summary>
 /// A constructor for the EntreeView. Initializes the ListChanged event and the Entree object.
 /// </summary>
 /// <remarks>
 /// NAME: EntreeView
 /// AUTHOR: Ryan Osgood
 /// DATE: 8/16/2019
 /// </remarks>
 /// <param name="a_entree">The Entree that belongs to this EntreeView.</param>
 public EntreeView(Entree a_entree)
 {
     m_entree = a_entree;
     m_textAttributes.ListChanged += TextAttributes_ListChanged;
 }/*public EntreeView(Entree a_entree)*/