Ejemplo n.º 1
0
        /// <summary>
        /// Occurs when click the DetailView button
        /// </summary>
        /// <param name="e">Description Information</param>
        public void RaiseLoadChild(LoadDetailViewEventArgs e)
        {
            EventHandler <LoadDetailViewEventArgs> handler = LoadChild;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Call when get the new listitem for binding in listview
        /// </summary>
        /// <param name="e">LoadDetailViewEventArgs</param>
        public void RaiseGetListItem(LoadDetailViewEventArgs e)
        {
            EventHandler <LoadDetailViewEventArgs> handler = GetListItem;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Ejemplo n.º 3
0
        /// <summary>
        /// Occurs when open the Popup additem window
        /// </summary>
        /// <param name="e">LoadDetailViewEventArgs</param>
        public void RaiseVisibleList(LoadDetailViewEventArgs e)
        {
            EventHandler <LoadDetailViewEventArgs> handler = VisibleListOrDetails;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Ejemplo n.º 4
0
        /// <summary>
        /// Called for sets the boolean flag when get folderstring
        /// </summary>
        /// <param name="e">LoadDetailViewEventArgs</param>
        public void RaiseGetBlnFolderString(LoadDetailViewEventArgs e)
        {
            EventHandler <LoadDetailViewEventArgs> handler = GetBlnFolderString;

            if (handler != null)
            {
                handler(this, e);
            }
        }
 /// <summary>
 /// Load the List view
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void EventBroker_LoadDetailView(object sender, LoadDetailViewEventArgs e)
 {
     if (PopUp)
     {
         return;
     }
     ListItem = e.ListItem;
     //Mouse.OverrideCursor = null;
 }