Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
505
Embed a TextUIElement inside a TimeSlotUIElement not show.
posted

I have 2 more questions:

1. if I embed a ButtonUIElement inside a TimeSlotUIElement like the code in above post (http://forums.infragistics.com/forums/t/47504.aspx), everything seem to be OK. But when I embed a TextUIElement, the Text of its property not show and also the click event not fire, the code is:


        public void AfterCreateChildElements(UIElement parent)
        {
          
            if (parent is Infragistics.Win.UltraWinSchedule.TimelineView.TimeSlotUIElement)
            {


                  TextUIElement txtUI = new TextUIElement(parent, "Whatever you want to write");
                  txtUI.Rect = parent.Rect;
             
                  txtUI.Text = "OK";
                  txtUI.ElementClick += OnEmbeddedButtonClicked;
                  parent.ChildElements.Add(txtUI);
            }

               
        }


  /// </summary>
        protected virtual void OnEmbeddedButtonClicked(object sender, UIElementEventArgs e)
        {


            MessageBox.Show("A Clicked on Lable ");
        }

   2. I set a startday and endday of a WinMonthViewSingle control
 to 1 month, but when running application,
 its also show days of next month with disabled.
My question is how to hide (invisible)
these disabled items from the control.

Thank you very much.