Beispiel #1
0
        private void OnTokenItemPropertyChanged(object sender, PropertyChangedEventArgs e)
        {
            if (!(e.PropertyName == "Text"))
            {
                return;
            }
            RadTokenizedTextItem tokenizedTextItem = sender as RadTokenizedTextItem;
            RadListDataItem      radListDataItem   = this.textBox.ListElement.Find(tokenizedTextItem.Text);

            tokenizedTextItem.Value = radListDataItem?.Value;
        }
Beispiel #2
0
 public RadListDataItemAccessibleObject GetItemAccessibleObject(
     RadListDataItem item)
 {
     if (item == null)
     {
         return((RadListDataItemAccessibleObject)null);
     }
     if (!this.cachedObjects.ContainsKey(item))
     {
         this.cachedObjects.Add(item, new RadListDataItemAccessibleObject(item, (AccessibleObject)this));
     }
     return(this.cachedObjects[item]);
 }
Beispiel #3
0
        public IDataItem NewItem()
        {
            RadListDataItem result = this.owner.OnListItemDataBinding();

            if (result == null)
            {
                result = new RadListDataItem();
            }
            result.DataLayer = this;
            result.Owner     = this.owner;

            return(result);
        }
        protected virtual bool AutoCompleteFilter(RadListDataItem item)
        {
            RadTextBoxAutoCompleteDropDown completeDropDown = this.ElementTree != null ? this.ElementTree.Control as RadTextBoxAutoCompleteDropDown : (RadTextBoxAutoCompleteDropDown)null;

            if (completeDropDown != null && completeDropDown.OwnerElement.ElementTree != null && completeDropDown.OwnerElement.ElementTree.Control.Site != null)
            {
                return(true);
            }
            if (string.IsNullOrEmpty(this.patternText))
            {
                return(false);
            }
            return(this.AutoCompleteFilterOverride(item));
        }
        protected virtual bool ProcessPageKeys(Keys keyData)
        {
            RadListDataItem selectedItem = this.ListElement.SelectedItem;
            int             num1         = this.ListElement.ViewElement.Children.Count - 1;
            int             num2         = this.ListElement.SelectedIndex;
            bool            flag         = false;

            switch (keyData)
            {
            case Keys.Prior:
                num2 = num2 == -1 ? this.ListElement.DataLayer.Items.Last.RowIndex : this.ListElement.GetFirstFullyVisibleItem().RowIndex;
                if (this.ListElement.SelectedIndex == num2)
                {
                    num2 -= num1;
                    break;
                }
                break;

            case Keys.Next:
                num2 = num2 == -1 ? this.ListElement.DataLayer.Items.First.RowIndex : this.ListElement.GetLastFullyVisibleItem().RowIndex;
                if (this.ListElement.SelectedIndex == num2)
                {
                    num2 += num1;
                }
                flag = true;
                break;
            }
            int num3 = this.ListElement.Items.Count - 1;

            if (num2 < 0)
            {
                num2 = 0;
            }
            else if (num2 > num3)
            {
                num2 = num3;
            }
            if (this.ListElement.SelectedIndex == num2)
            {
                return(false);
            }
            this.ListElement.SelectedIndex = num2;
            this.ListElement.UpdateLayout();
            if (flag)
            {
                this.ListElement.ScrollToItem(selectedItem);
            }
            return(true);
        }
 protected virtual RadCheckedListDataItem CreateCheckedListDataItem(
   RadListDataItem item)
 {
   RadCheckedListDataItem checkedListDataItem = new RadCheckedListDataItem(item.Text, false);
   checkedListDataItem.Value = item.Value;
   checkedListDataItem.Tag = item.Tag;
   checkedListDataItem.Height = item.Height;
   checkedListDataItem.Image = item.Image;
   checkedListDataItem.ImageAlignment = item.ImageAlignment;
   checkedListDataItem.TextAlignment = item.TextAlignment;
   checkedListDataItem.TextImageRelation = item.TextImageRelation;
   checkedListDataItem.TextWrap = item.TextWrap;
   checkedListDataItem.TextOrientation = item.TextOrientation;
   return checkedListDataItem;
 }
        private void InitializeDropDownEnum(Control control, PropertyDescriptor property)
        {
            RadDropDownList radDropDownList = control as RadDropDownList;

            if (radDropDownList == null)
            {
                return;
            }
            foreach (object obj in Enum.GetValues(property.PropertyType))
            {
                RadListDataItem radListDataItem = new RadListDataItem(obj.ToString(), obj);
                radDropDownList.Items.Add(radListDataItem);
            }
            radDropDownList.DropDownStyle = RadDropDownStyle.DropDownList;
        }
        private AccessibleObject GetItemAccessibleObject(RadListDataItem item)
        {
            RadListControlAccessibleObject  parent1 = this.parent as RadListControlAccessibleObject;
            RadDropDownListAccessibleObject parent2 = this.parent as RadDropDownListAccessibleObject;

            if (parent1 != null)
            {
                return((AccessibleObject)parent1.GetItemAccessibleObject(item));
            }
            if (parent2 != null)
            {
                return((AccessibleObject)parent2.GetItemAccessibleObject(item));
            }
            return((AccessibleObject) new RadListDataItemAccessibleObject(item, (AccessibleObject)null));
        }
        protected override void OnPopupClosed(RadPopupClosedEventArgs args)
        {
            base.OnPopupClosed(args);
            int selectedIndex = this.ListElement.SelectedIndex;

            this.ListElement.SuspendSuggestNotifications();
            this.ListElement.SelectedIndex = -1;
            if (selectedIndex >= 0)
            {
                RadListDataItem radListDataItem = this.ListElement.Items[selectedIndex];
                radListDataItem.Selected = false;
                radListDataItem.Active   = false;
            }
            this.ListElement.ResumeSuggestNotifications();
        }
Beispiel #10
0
        public object GetValue(RadListDataItem item)
        {
            object obj;

            try
            {
                obj = this.valueMember.Split('.').Length <= 1 ? this.listSource.GetBoundValue(item.DataBoundItem, this.valueMember) : this.GetSubPropertyValue(this.valueMember, item.DataBoundItem);
            }
            catch (ArgumentException ex)
            {
                obj = item.DataBoundItem;
                this.DisplayMember = "";
                this.ValueMember   = "";
            }
            return(obj);
        }
Beispiel #11
0
        protected virtual RadTokenizedTextItem OnInsertBlock(ITextBlock textBlock)
        {
            string text = textBlock.Text;
            RadTokenizedTextItem      tokenizedTextItem = (RadTokenizedTextItem)null;
            TokenizedTextBlockElement textBlockElement  = textBlock as TokenizedTextBlockElement;

            if (textBlockElement != null)
            {
                tokenizedTextItem = textBlockElement.Item;
                RadListDataItem radListDataItem = this.textBox.ListElement.Find(text);
                tokenizedTextItem.Value = radListDataItem?.Value;
                this.Items.Add(tokenizedTextItem);
            }
            this.Attach(textBlock);
            return(tokenizedTextItem);
        }
 private AccessibleObject GetItemAccessibleObject(RadListDataItem item)
 {
     if (this.DropDown.OwnerDropDownListElement != null)
     {
         RadDropDownList control = this.DropDown.OwnerDropDownListElement.ElementTree.Control as RadDropDownList;
         if (control != null)
         {
             RadDropDownListAccessibleObject accessibilityObject = control.AccessibilityObject as RadDropDownListAccessibleObject;
             if (accessibilityObject != null)
             {
                 return((AccessibleObject)accessibilityObject.GetItemAccessibleObject(item));
             }
         }
     }
     return((AccessibleObject) new RadListDataItemAccessibleObject(item, (AccessibleObject)this));
 }
Beispiel #13
0
        private RadListDataItem GetSelectedOrHoveredItem()
        {
            RadListDataItem radListDataItem = (RadListDataItem)null;

            foreach (RadListVisualItem child in this.ownerDropDownListElement.ListElement.ViewElement.Children)
            {
                if (child.Selected && child.Data.RowIndex != this.ownerDropDownListElement.selectedIndexOnPopupOpen)
                {
                    return(child.Data);
                }
                if (child.IsMouseOver)
                {
                    radListDataItem = child.Data;
                }
            }
            return(radListDataItem);
        }
        protected virtual void SuggestOverride(string pattern)
        {
            int selectedIndex = this.SelectedIndex;

            this.patternText = pattern;
            this.SuspendSuggestNotifications();
            if (selectedIndex >= 0)
            {
                RadListDataItem radListDataItem = this.Items[selectedIndex];
                radListDataItem.Selected = false;
                radListDataItem.Active   = false;
            }
            this.DataLayer.Refresh();
            this.SelectedIndex = -1;
            this.ResumeSuggestNotifications();
            RadListDataItemCollection items = this.DataLayer.Items;
            int count = items.Count;

            if (count > 0)
            {
                this.UpdateLayout();
                this.ScrollToItem(items.First);
            }
            bool   flag = this.IsAppendMode && count > 0;
            string str  = string.Empty;

            if (flag)
            {
                str = this.GetSuggestedText(items.First, true);
            }
            else if (!this.IsSuggestMode && this.IsAppendMode)
            {
                str = this.patternText;
            }
            else if (count == 1)
            {
                str = this.GetSuggestedText(items.First, false);
            }
            AutoCompleteAction action = AutoCompleteAction.None;

            if (flag && !this.IsExactSuggestion(str, this.patternText))
            {
                action = AutoCompleteAction.Append;
            }
            this.SetSuggestedText(str, action);
        }
        public override void Select(AccessibleSelection flags)
        {
            switch (flags)
            {
            case AccessibleSelection.AddSelection:
            case AccessibleSelection.ExtendSelection:
            case AccessibleSelection.TakeSelection:
            case AccessibleSelection.TakeFocus:
                this.SelectedDataItem = this.item;
                break;

            case AccessibleSelection.RemoveSelection:
                break;
            }

            base.Select(flags);
        }
Beispiel #16
0
        protected virtual bool DefaultFilter(RadListDataItem item)
        {
            switch (this.suggestMode)
            {
            case SuggestMode.StartWiths:
                return(item.Text.StartsWith(this.Filter, this.StringComparison));

            case SuggestMode.Contains:
                if ((this.StringComparison & StringComparison.InvariantCultureIgnoreCase) == StringComparison.InvariantCultureIgnoreCase || (this.StringComparison & StringComparison.InvariantCultureIgnoreCase) == StringComparison.CurrentCultureIgnoreCase)
                {
                    return(item.Text.ToLower().Contains(this.Filter.ToLower()));
                }
                return(item.Text.Contains(this.Filter));

            default:
                return(item.Text.StartsWith(this.Filter, this.StringComparison));
            }
        }
        protected override bool AutoCompleteFilterOverride(RadListDataItem item)
        {
            if (this.AutoCompleteMode != AutoCompleteMode.Suggest)
            {
                return(base.AutoCompleteFilterOverride(item));
            }
            string upperInvariant1 = (item.Text ?? string.Empty).ToUpperInvariant();
            string upperInvariant2 = this.PatternText.ToUpperInvariant();

            foreach (RadListDataItem checkedItem in (ReadOnlyCollection <RadCheckedListDataItem>) this.OwnerElement.CheckedItems)
            {
                if (checkedItem.CachedText == item.Text)
                {
                    return(false);
                }
            }
            return(upperInvariant1.Contains(upperInvariant2));
        }
        public virtual RadListDataItem Find(string text)
        {
            RadListDataItem selectedItem = this.SelectedItem;

            if (selectedItem != null && this.IsMatching(selectedItem.Text, text))
            {
                return(selectedItem);
            }
            for (int index = 0; index < this.DataLayer.ListSource.Count; ++index)
            {
                RadListDataItem radListDataItem = this.DataLayer.ListSource[index];
                if (this.IsMatching(radListDataItem.Text, text))
                {
                    return(radListDataItem);
                }
            }
            return((RadListDataItem)null);
        }
Beispiel #19
0
        private int FindShortestString(string findString)
        {
            int count            = this.owner.ListElement.Items.Count;
            int indexOfFoundItem = -1;
            int lenOfFoundItem   = int.MaxValue;
            int findStringLength = findString.Length;

            this.stringComparison = this.owner.CaseSensitive ? StringComparison.InvariantCulture : StringComparison.InvariantCultureIgnoreCase;
            this.findString       = findString;

            SortedDictionary <string, RadListDataItem> shortest = new SortedDictionary <string, RadListDataItem>();

            for (int i = 0; i < count; ++i)
            {
                RadListDataItem item = this.owner.ListElement.Items[i];
                int             tempCachedTextLength = item.CachedText.Length;
                bool            res = this.DefaultCompare(item);
                if (!res)
                {
                    continue;
                }

                if (findStringLength == tempCachedTextLength)//found exact match
                {
                    return(i);
                }

                if (findStringLength < tempCachedTextLength)//found shorter match
                {
                    if (tempCachedTextLength < lenOfFoundItem)
                    {
                        lenOfFoundItem   = item.CachedText.Length;
                        indexOfFoundItem = item.RowIndex;
                    }

                    shortest[item.CachedText] = item;
                }
            }

            IEnumerator <string> enumerator = shortest.Keys.GetEnumerator();

            return(enumerator.MoveNext() ? shortest[enumerator.Current].RowIndex : indexOfFoundItem);
        }
Beispiel #20
0
        public int FindShortestString(string findString)
        {
            int count   = this.Owner.ListElement.Items.Count;
            int num1    = -1;
            int num2    = int.MaxValue;
            int length1 = findString.Length;

            this.stringComparison = this.Owner.CaseSensitive ? StringComparison.InvariantCulture : StringComparison.InvariantCultureIgnoreCase;
            this.findString       = findString;
            SortedDictionary <string, RadListDataItem> sortedDictionary = new SortedDictionary <string, RadListDataItem>();

            for (int index = 0; index < count; ++index)
            {
                RadListDataItem radListDataItem = this.Owner.ListElement.Items[index];
                if (radListDataItem.Enabled)
                {
                    int length2 = radListDataItem.CachedText.Length;
                    if (this.DefaultCompare(radListDataItem))
                    {
                        if (length1 == length2)
                        {
                            return(index);
                        }
                        if (length1 < length2)
                        {
                            if (length2 < num2)
                            {
                                num2 = radListDataItem.CachedText.Length;
                                num1 = radListDataItem.RowIndex;
                            }
                            sortedDictionary[radListDataItem.CachedText] = radListDataItem;
                        }
                    }
                }
            }
            IEnumerator <string> enumerator = (IEnumerator <string>)sortedDictionary.Keys.GetEnumerator();

            if (!enumerator.MoveNext())
            {
                return(num1);
            }
            return(sortedDictionary[enumerator.Current].RowIndex);
        }
 private void MoveItems(
     RadListControl left,
     RadItemCollection leftCollection,
     RadListControl right,
     RadItemCollection rigthCollection,
     int countItemsToMove)
 {
     if (left.Items.Count == 0)
     {
         return;
     }
     if (left.SelectedItems.Count == 0)
     {
         for (int index = 0; index < countItemsToMove; ++index)
         {
             RadListDataItem radListDataItem = left.Items[0];
             left.Items.Remove(radListDataItem);
             right.Items.Add(radListDataItem);
             RadItem tag = (RadItem)radListDataItem.Tag;
             leftCollection.Remove(tag);
             if (!rigthCollection.Contains(tag))
             {
                 rigthCollection.Add(tag);
             }
         }
     }
     else
     {
         for (int index = 0; index < left.SelectedItems.Count; ++index)
         {
             RadListDataItem selectedItem = left.SelectedItems[index];
             left.Items.Remove(selectedItem);
             right.Items.Add(selectedItem);
             RadItem tag = (RadItem)selectedItem.Tag;
             leftCollection.Remove(tag);
             if (!rigthCollection.Contains(tag))
             {
                 rigthCollection.Add(tag);
             }
         }
     }
 }
Beispiel #22
0
        private RadListDataItem GetSelectedOrHoveredItem()
        {
            RadListDataItem      hoveredItem = null;
            RadElementCollection items       = this.ownerDropDownListElement.ListElement.ViewElement.Children;

            foreach (RadListVisualItem item in items)
            {
                if (item.Selected && item.Data.RowIndex != this.ownerDropDownListElement.selectedIndexOnPopupOpen)
                {
                    return(item.Data);
                }

                if (item.IsMouseOver)
                {
                    hoveredItem = item.Data;
                }
            }

            return(hoveredItem);
        }
Beispiel #23
0
 protected override void SyncVisualProperties(RadListDataItem listItem)
 {
     if (listItem == null)
     {
         int num1 = (int)this.EditableElement.ResetValue(LightVisualElement.ImageProperty, ValueResetFlags.Local);
         int num2 = (int)this.EditableElement.ResetValue(LightVisualElement.ImageAlignmentProperty, ValueResetFlags.Local);
         int num3 = (int)this.EditableElement.ResetValue(LightVisualElement.TextAlignmentProperty, ValueResetFlags.Local);
         int num4 = (int)this.EditableElement.ResetValue(LightVisualElement.TextImageRelationProperty, ValueResetFlags.Local);
     }
     else
     {
         if (!listItem.Selected || this.ListElement.SuspendSelectionEvents)
         {
             return;
         }
         this.EditableElement.Image             = listItem.Image;
         this.EditableElement.ImageAlignment    = listItem.ImageAlignment;
         this.EditableElement.TextAlignment     = listItem.TextAlignment;
         this.EditableElement.TextImageRelation = listItem.TextImageRelation;
     }
 }
        private void SetupControlSpecificProperties(Control control, PropertyDescriptor property)
        {
            RadDropDownList radDropDownList = control as RadDropDownList;

            if (radDropDownList != null && property.PropertyType.IsEnum)
            {
                foreach (object obj in Enum.GetValues(property.PropertyType))
                {
                    RadListDataItem radListDataItem = new RadListDataItem(obj.ToString(), obj);
                    radDropDownList.Items.Add(radListDataItem);
                }
                radDropDownList.DropDownStyle = RadDropDownStyle.DropDownList;
            }
            RadSpinEditor radSpinEditor = control as RadSpinEditor;

            if (radSpinEditor == null)
            {
                return;
            }
            RadRangeAttribute radRangeAttribute = (RadRangeAttribute)null;

            foreach (Attribute attribute in property.Attributes)
            {
                if (attribute is RadRangeAttribute)
                {
                    radRangeAttribute = attribute as RadRangeAttribute;
                }
            }
            if (radRangeAttribute != null)
            {
                radSpinEditor.Minimum = (Decimal)radRangeAttribute.MinValue;
                radSpinEditor.Maximum = (Decimal)radRangeAttribute.MaxValue;
            }
            else
            {
                radSpinEditor.Minimum = new Decimal(int.MinValue);
                radSpinEditor.Maximum = new Decimal(int.MaxValue);
            }
        }
 private void PrepareDropDownLists(
     RadDropDownList radDropDownList,
     FilterOperator filterOperator)
 {
     if (this.filterOperationContext == null)
     {
         this.filterOperationContext = FilterOperationContext.GetFilterOperations(this.DataType);
     }
     for (int index = 0; index < this.filterOperationContext.Count; ++index)
     {
         FilterOperationContext operationContext = this.filterOperationContext[index];
         RadListDataItem        radListDataItem  = new RadListDataItem();
         radListDataItem.Text  = operationContext.Name;
         radListDataItem.Value = (object)operationContext.Operator;
         radDropDownList.Items.Add(radListDataItem);
         if (operationContext.Operator == filterOperator)
         {
             radDropDownList.SelectedItem = radListDataItem;
         }
     }
     radDropDownList.SelectedIndexChanged += new Telerik.WinControls.UI.Data.PositionChangedEventHandler(this.RadDropDownList_SelectedIndexChanged);
 }
Beispiel #26
0
 protected virtual void OnListElementItemsChanging(NotifyCollectionChangingEventArgs e)
 {
     if (e.Action == NotifyCollectionChangedAction.Reset)
     {
         foreach (RadTokenizedTextItem tokenizedTextItem in (IEnumerable <RadTokenizedTextItem>) this.Items)
         {
             tokenizedTextItem.Value = (object)null;
         }
     }
     else if (e.Action == NotifyCollectionChangedAction.Remove)
     {
         RadListDataItem oldItem = e.OldItems[0] as RadListDataItem;
         if (oldItem.Value == null)
         {
             return;
         }
         foreach (RadTokenizedTextItem tokenizedTextItem in this.FinAll(oldItem.Text))
         {
             tokenizedTextItem.Value = (object)null;
         }
     }
     else
     {
         if (e.Action != NotifyCollectionChangedAction.Add)
         {
             return;
         }
         RadListDataItem newItem = e.NewItems[0] as RadListDataItem;
         if (newItem.Value == null)
         {
             return;
         }
         foreach (RadTokenizedTextItem tokenizedTextItem in this.FinAll(newItem.Text))
         {
             tokenizedTextItem.Value = newItem.Value;
         }
     }
 }
        private void PopulateEditorItems()
        {
            BaseDropDownListEditor editor = this.logicalOperatorElement.Editor as BaseDropDownListEditor;

            if (editor == null)
            {
                return;
            }
            RadDropDownListElement editorElement = editor.EditorElement as RadDropDownListElement;
            DataFilterGroupNode    groupNode     = this.GroupNode;

            if (editorElement == null || groupNode == null)
            {
                return;
            }
            editorElement.BeginUpdate();
            editorElement.Items.Clear();
            int num1 = 0;
            int num2 = -1;

            foreach (FilterLogicalOperator logicalOperator in Enum.GetValues(typeof(FilterLogicalOperator)))
            {
                RadListDataItem radListDataItem = new RadListDataItem(this.GetOperatorText(logicalOperator), (object)logicalOperator);
                editorElement.Items.Add(radListDataItem);
                if (object.Equals((object)logicalOperator, (object)groupNode.LogicalOperator))
                {
                    num2 = num1;
                }
                ++num1;
            }
            editorElement.DropDownWidth = 110;
            editorElement.SelectedIndex = num2;
            editorElement.EndUpdate();
            editorElement.SelectedValue = (object)groupNode.LogicalOperator;
            editorElement.Visibility    = ElementVisibility.Hidden;
        }
Beispiel #28
0
        public int GetRowIndex(RadListDataItem item)
        {
            if (!this.owner.ShowGroups)
            {
                return(this.listSource.CollectionView.IndexOf(item));
            }
            int num = 0;

            foreach (ListGroup group in (ReadOnlyCollection <Group <RadListDataItem> >) this.owner.Groups)
            {
                if (!group.Collapsed)
                {
                    foreach (RadListDataItem radListDataItem in (IEnumerable <RadListDataItem>)group.GetItems())
                    {
                        if (item.Equals((object)radListDataItem))
                        {
                            return(num);
                        }
                        ++num;
                    }
                }
            }
            return(-1);
        }
        /// <summary>
        /// Creates a customize dialog that provides customization options for the strips in the specified <c ref="CommandBarStripInfoHolder"/>.
        /// </summary>
        /// <param name="stripInfoHolder">The <c ref="CommandBarStripInfoHolder"/> from which the information for the strips will be taken.</param>
        public CommandBarCustomizeDialog(CommandBarStripInfoHolder stripInfoHolder)
        {
            InitializeComponent();
            chooseToolstripLabel.LabelElement.LabelFill.Visibility = ElementVisibility.Visible;
            SetLocalizedStrings();

            this.stripInfoHolder = stripInfoHolder;

            this.stripsListControl.CreatingVisualListItem     += new CreatingVisualListItemEventHandler(stripsListControl_CreatingVisualListItem);
            this.stripsListControl.ItemDataBinding            += new ListItemDataBindingEventHandler(ItemDataBinding);
            this.stripItemsListControl.CreatingVisualListItem += new CreatingVisualListItemEventHandler(toolstripItemsListControl_CreatingVisualListItem);
            this.stripItemsListControl.ItemDataBinding        += new ListItemDataBindingEventHandler(toolstripItemsListControl_ItemDataBinding);

            this.stripsListControl.DataSource = stripInfoHolder.StripInfoList;

            this.stripsDropDownList.DropDownStyle = RadDropDownStyle.DropDownList;
            this.stripsDropDownList.Items.Clear();
            foreach (CommandBarStripElement strip in stripInfoHolder.StripInfoList)
            {
                RadListDataItem item = new RadListDataItem();
                item.Text  = strip.DisplayName;
                item.Value = strip;
                this.stripsDropDownList.Items.Add(item);
            }

            if (this.stripsDropDownList.Items.Count > 0)
            {
                this.stripsDropDownList.SelectedIndex = 0;
            }

            toolstripsDownList_SelectedValueChanged(this, EventArgs.Empty);

            this.moveUpButton.Enabled = false;

            this.WireEvents();
        }
        private void addDefaultControlsInformationWhenEditing()
        {
            Telerik.WinControls.UI.RadListDataItem radListDataItem4 = new Telerik.WinControls.UI.RadListDataItem();
            Telerik.WinControls.UI.RadListDataItem radListDataItem5 = new Telerik.WinControls.UI.RadListDataItem();
            Telerik.WinControls.UI.RadListDataItem radListDataItem6 = new Telerik.WinControls.UI.RadListDataItem();
            radListDataItem4.Text = "1 час";
            radListDataItem4.Value = 1;
            radListDataItem4.TextWrap = true;
            radListDataItem5.Text = "2 часа";
            radListDataItem5.Value = 2;
            radListDataItem5.TextWrap = true;
            radListDataItem6.Text = "без значение";
            radListDataItem6.Value = 3;
            radListDataItem6.TextWrap = true;
            try
            {
                switch (mLesson.HourLenght)
                {
                    case HourLenght.SingleHour:
                        radListDataItem4.Selected = true;
                        break;
                    case HourLenght.DoubleHour:
                        radListDataItem5.Selected = true;
                        break;
                    case HourLenght.NoMatter:
                        radListDataItem6.Selected = true;
                        break;

                }
            }
            catch
            {
                radListDataItem4.Selected = true;
            }
            this.dropDownListLessonLenght.Items.Add(radListDataItem4);
            this.dropDownListLessonLenght.Items.Add(radListDataItem5);
            this.dropDownListLessonLenght.Items.Add(radListDataItem6);

            foreach (Teacher t in mDBManager.Teachers)
            {
                RadListDataItem listDataItem = new RadListDataItem();
                listDataItem.Text = t.Name;
                listDataItem.Value = t.ID;

                if (t.ID == mLesson.Teacher.ID)
                {
                    listDataItem.Selected = true;
                }

                dropDownListTeachers.Items.Add(listDataItem);
            }

            foreach (Subject s in mDBManager.Subjects)
            {
                RadListDataItem listDataItem = new RadListDataItem();
                listDataItem.Text = s.Name;
                listDataItem.Value = s.ID;

                if (s.ID == mLesson.Subject.ID)
                {
                    listDataItem.Selected = true;
                }

                dropDownListSubjects.Items.Add(listDataItem);
            }

            foreach (Class c in mDBManager.Classes)
            {
                RadListDataItem listDataItem = new RadListDataItem();
                listDataItem.Text = c.Name;
                listDataItem.Value = c.ID;

                if (c.ID == mLesson.Class.ID)
                {
                    listDataItem.Selected = true;
                }

                dropDownListClasses.Items.Add(listDataItem);
            }

            foreach (Classroom c in mDBManager.Classrooms)
            {
                RadListDataItem listDataItem = new RadListDataItem();
                listDataItem.Text = c.Name;
                listDataItem.Value = c.ID;

                try
                {
                    if (c.ID == mLesson.DesiredClassroom.ID)
                    {
                        listDataItem.Selected = true;
                    }
                }
                catch { }

                dropDownListWantedRoom.Items.Add(listDataItem);
            }

            spinEditorHoursPerWeek.Value = mLesson.HoursPerWeek;
        }
 protected virtual bool AutoCompleteFilterOverride(RadListDataItem item)
 {
     return((item.Text ?? string.Empty).ToUpperInvariant().StartsWith(this.patternText.ToUpperInvariant()));
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Telerik.WinControls.UI.ListViewDetailColumn listViewDetailColumn1 = new Telerik.WinControls.UI.ListViewDetailColumn("Column 0", "Версия");
     Telerik.WinControls.UI.ListViewDetailColumn listViewDetailColumn2 = new Telerik.WinControls.UI.ListViewDetailColumn("Column 1", "Тип");
     Telerik.WinControls.UI.ListViewDetailColumn listViewDetailColumn3 = new Telerik.WinControls.UI.ListViewDetailColumn("Column 2", "Зависимость");
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LauncherForm));
     Telerik.WinControls.UI.RadListDataItem radListDataItem1 = new Telerik.WinControls.UI.RadListDataItem();
     this.vs12theme = new Telerik.WinControls.Themes.VisualStudio2012DarkTheme();
     this.mainPageView = new Telerik.WinControls.UI.RadPageView();
     this.News = new Telerik.WinControls.UI.RadPageViewPage();
     this.newsBrowser = new System.Windows.Forms.WebBrowser();
     this.webPanel = new Telerik.WinControls.UI.RadPanel();
     this.BackWebButton = new Telerik.WinControls.UI.RadButton();
     this.ForwardWebButton = new Telerik.WinControls.UI.RadButton();
     this.ConsolePage = new Telerik.WinControls.UI.RadPageViewPage();
     this.logBox = new System.Windows.Forms.RichTextBox();
     this.ConsoleOptionsPanel = new Telerik.WinControls.UI.RadPanel();
     this.SetToClipboardButton = new Telerik.WinControls.UI.RadButton();
     this.DebugModeButton = new Telerik.WinControls.UI.RadToggleButton();
     this.EditVersions = new Telerik.WinControls.UI.RadPageViewPage();
     this.versionsListView = new Telerik.WinControls.UI.RadListView();
     this.AboutPage = new Telerik.WinControls.UI.RadPageViewPage();
     this.AboutPageView = new Telerik.WinControls.UI.RadPageView();
     this.AboutPageViewPage = new Telerik.WinControls.UI.RadPageViewPage();
     this.radScrollablePanel2 = new Telerik.WinControls.UI.RadScrollablePanel();
     this.AboutVersion = new Telerik.WinControls.UI.RadLabel();
     this.label6 = new System.Windows.Forms.Label();
     this.MCofflineDescLabel = new System.Windows.Forms.Label();
     this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
     this.PartnersLabel = new Telerik.WinControls.UI.RadLabel();
     this.CopyrightInfoLabel = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.DevInfoLabel = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.GratitudesDescLabel = new System.Windows.Forms.Label();
     this.GratitudesLabel = new Telerik.WinControls.UI.RadLabel();
     this.LicensesPage = new Telerik.WinControls.UI.RadPageViewPage();
     this.licensePageView = new Telerik.WinControls.UI.RadPageView();
     this.FreeLauncherLicense = new Telerik.WinControls.UI.RadPageViewPage();
     this.FreeLauncherLicenseText = new Telerik.WinControls.UI.RadLabel();
     this.dotMCLauncherLicense = new Telerik.WinControls.UI.RadPageViewPage();
     this.dotMCLauncherLicenseText = new Telerik.WinControls.UI.RadLabel();
     this.SettingsPage = new Telerik.WinControls.UI.RadPageViewPage();
     this.radScrollablePanel1 = new Telerik.WinControls.UI.RadScrollablePanel();
     this.radGroupBox2 = new Telerik.WinControls.UI.RadGroupBox();
     this.CloseGameOutput = new Telerik.WinControls.UI.RadCheckBox();
     this.UseGamePrefix = new Telerik.WinControls.UI.RadCheckBox();
     this.EnableMinecraftLogging = new Telerik.WinControls.UI.RadCheckBox();
     this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
     this.radLabel4 = new Telerik.WinControls.UI.RadLabel();
     this.LangDropDownList = new Telerik.WinControls.UI.RadDropDownList();
     this.EnableMinecraftUpdateAlerts = new Telerik.WinControls.UI.RadCheckBox();
     this.radCheckBox1 = new Telerik.WinControls.UI.RadCheckBox();
     this.StatusBar = new Telerik.WinControls.UI.RadProgressBar();
     this.radPanel1 = new Telerik.WinControls.UI.RadPanel();
     this.DeleteProfileButton = new Telerik.WinControls.UI.RadButton();
     this.ManageUsersButton = new Telerik.WinControls.UI.RadButton();
     this.NicknameDropDownList = new Telerik.WinControls.UI.RadDropDownList();
     this.SelectedVersion = new System.Windows.Forms.Label();
     this.LogoBox = new System.Windows.Forms.PictureBox();
     this.LaunchButton = new Telerik.WinControls.UI.RadButton();
     this.profilesDropDownBox = new Telerik.WinControls.UI.RadDropDownList();
     this.EditProfile = new Telerik.WinControls.UI.RadButton();
     this.AddProfile = new Telerik.WinControls.UI.RadButton();
     ((System.ComponentModel.ISupportInitialize)(this.mainPageView)).BeginInit();
     this.mainPageView.SuspendLayout();
     this.News.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.webPanel)).BeginInit();
     this.webPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.BackWebButton)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ForwardWebButton)).BeginInit();
     this.ConsolePage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ConsoleOptionsPanel)).BeginInit();
     this.ConsoleOptionsPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.SetToClipboardButton)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DebugModeButton)).BeginInit();
     this.EditVersions.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.versionsListView)).BeginInit();
     this.AboutPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.AboutPageView)).BeginInit();
     this.AboutPageView.SuspendLayout();
     this.AboutPageViewPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radScrollablePanel2)).BeginInit();
     this.radScrollablePanel2.PanelContainer.SuspendLayout();
     this.radScrollablePanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.AboutVersion)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PartnersLabel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GratitudesLabel)).BeginInit();
     this.LicensesPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.licensePageView)).BeginInit();
     this.licensePageView.SuspendLayout();
     this.FreeLauncherLicense.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.FreeLauncherLicenseText)).BeginInit();
     this.dotMCLauncherLicense.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dotMCLauncherLicenseText)).BeginInit();
     this.SettingsPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radScrollablePanel1)).BeginInit();
     this.radScrollablePanel1.PanelContainer.SuspendLayout();
     this.radScrollablePanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).BeginInit();
     this.radGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CloseGameOutput)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.UseGamePrefix)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EnableMinecraftLogging)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
     this.radGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LangDropDownList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EnableMinecraftUpdateAlerts)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.StatusBar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
     this.radPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DeleteProfileButton)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ManageUsersButton)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NicknameDropDownList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LogoBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LaunchButton)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.profilesDropDownBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EditProfile)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.AddProfile)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // mainPageView
     //
     this.mainPageView.Controls.Add(this.News);
     this.mainPageView.Controls.Add(this.ConsolePage);
     this.mainPageView.Controls.Add(this.EditVersions);
     this.mainPageView.Controls.Add(this.AboutPage);
     this.mainPageView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.mainPageView.Location = new System.Drawing.Point(0, 0);
     this.mainPageView.Name = "mainPageView";
     //
     //
     //
     this.mainPageView.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.mainPageView.RootElement.AngleTransform = 0F;
     this.mainPageView.RootElement.FlipText = false;
     this.mainPageView.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.mainPageView.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.mainPageView.SelectedPage = this.News;
     this.mainPageView.Size = new System.Drawing.Size(858, 363);
     this.mainPageView.TabIndex = 2;
     this.mainPageView.ThemeName = "VisualStudio2012Dark";
     ((Telerik.WinControls.UI.RadPageViewStripElement)(this.mainPageView.GetChildAt(0))).StripButtons = Telerik.WinControls.UI.StripViewButtons.None;
     //
     // News
     //
     this.News.Controls.Add(this.newsBrowser);
     this.News.Controls.Add(this.webPanel);
     this.News.ItemSize = new System.Drawing.SizeF(65F, 24F);
     this.News.Location = new System.Drawing.Point(5, 30);
     this.News.Name = "News";
     this.News.Size = new System.Drawing.Size(848, 328);
     this.News.Text = "НОВОСТИ";
     //
     // newsBrowser
     //
     this.newsBrowser.Dock = System.Windows.Forms.DockStyle.Fill;
     this.newsBrowser.Location = new System.Drawing.Point(0, 0);
     this.newsBrowser.MinimumSize = new System.Drawing.Size(20, 20);
     this.newsBrowser.Name = "newsBrowser";
     this.newsBrowser.ScriptErrorsSuppressed = true;
     this.newsBrowser.Size = new System.Drawing.Size(848, 308);
     this.newsBrowser.TabIndex = 0;
     this.newsBrowser.Url = new System.Uri("http://mcupdate.tumblr.com/", System.UriKind.Absolute);
     this.newsBrowser.Navigated += new System.Windows.Forms.WebBrowserNavigatedEventHandler(this.newsBrowser_Navigated);
     this.newsBrowser.Navigating += new System.Windows.Forms.WebBrowserNavigatingEventHandler(this.newsBrowser_Navigating);
     //
     // webPanel
     //
     this.webPanel.Controls.Add(this.BackWebButton);
     this.webPanel.Controls.Add(this.ForwardWebButton);
     this.webPanel.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.webPanel.Location = new System.Drawing.Point(0, 308);
     this.webPanel.Name = "webPanel";
     //
     //
     //
     this.webPanel.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.webPanel.RootElement.AngleTransform = 0F;
     this.webPanel.RootElement.FlipText = false;
     this.webPanel.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.webPanel.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.webPanel.Size = new System.Drawing.Size(848, 20);
     this.webPanel.TabIndex = 1;
     this.webPanel.ThemeName = "VisualStudio2012Dark";
     this.webPanel.Visible = false;
     //
     // BackWebButton
     //
     this.BackWebButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.BackWebButton.Location = new System.Drawing.Point(720, 0);
     this.BackWebButton.Name = "BackWebButton";
     //
     //
     //
     this.BackWebButton.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.BackWebButton.RootElement.AngleTransform = 0F;
     this.BackWebButton.RootElement.FlipText = false;
     this.BackWebButton.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.BackWebButton.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.BackWebButton.Size = new System.Drawing.Size(64, 17);
     this.BackWebButton.TabIndex = 1;
     this.BackWebButton.Text = "<";
     this.BackWebButton.ThemeName = "VisualStudio2012Dark";
     this.BackWebButton.Click += new System.EventHandler(this.backWebButton_Click);
     //
     // ForwardWebButton
     //
     this.ForwardWebButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.ForwardWebButton.Location = new System.Drawing.Point(784, 0);
     this.ForwardWebButton.Name = "ForwardWebButton";
     //
     //
     //
     this.ForwardWebButton.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.ForwardWebButton.RootElement.AngleTransform = 0F;
     this.ForwardWebButton.RootElement.FlipText = false;
     this.ForwardWebButton.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.ForwardWebButton.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.ForwardWebButton.Size = new System.Drawing.Size(64, 17);
     this.ForwardWebButton.TabIndex = 0;
     this.ForwardWebButton.Text = ">";
     this.ForwardWebButton.ThemeName = "VisualStudio2012Dark";
     this.ForwardWebButton.Click += new System.EventHandler(this.forwardWebButton_Click);
     //
     // ConsolePage
     //
     this.ConsolePage.Controls.Add(this.logBox);
     this.ConsolePage.Controls.Add(this.ConsoleOptionsPanel);
     this.ConsolePage.ItemSize = new System.Drawing.SizeF(65F, 24F);
     this.ConsolePage.Location = new System.Drawing.Point(5, 30);
     this.ConsolePage.Name = "ConsolePage";
     this.ConsolePage.Size = new System.Drawing.Size(848, 328);
     this.ConsolePage.Text = "КОНСОЛЬ";
     //
     // logBox
     //
     this.logBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.logBox.Dock = System.Windows.Forms.DockStyle.Fill;
     this.logBox.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.logBox.Location = new System.Drawing.Point(0, 0);
     this.logBox.Name = "logBox";
     this.logBox.ReadOnly = true;
     this.logBox.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
     this.logBox.Size = new System.Drawing.Size(848, 299);
     this.logBox.TabIndex = 1;
     this.logBox.Text = "";
     this.logBox.TextChanged += new System.EventHandler(this.logBox_TextChanged);
     //
     // ConsoleOptionsPanel
     //
     this.ConsoleOptionsPanel.Controls.Add(this.SetToClipboardButton);
     this.ConsoleOptionsPanel.Controls.Add(this.DebugModeButton);
     this.ConsoleOptionsPanel.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.ConsoleOptionsPanel.Location = new System.Drawing.Point(0, 299);
     this.ConsoleOptionsPanel.Name = "ConsoleOptionsPanel";
     this.ConsoleOptionsPanel.Size = new System.Drawing.Size(848, 29);
     this.ConsoleOptionsPanel.TabIndex = 2;
     this.ConsoleOptionsPanel.ThemeName = "VisualStudio2012Dark";
     //
     // SetToClipboardButton
     //
     this.SetToClipboardButton.Location = new System.Drawing.Point(7, 3);
     this.SetToClipboardButton.Name = "SetToClipboardButton";
     this.SetToClipboardButton.Size = new System.Drawing.Size(131, 23);
     this.SetToClipboardButton.TabIndex = 1;
     this.SetToClipboardButton.Text = "Скопировать в буфер";
     this.SetToClipboardButton.ThemeName = "VisualStudio2012Dark";
     this.SetToClipboardButton.Click += new System.EventHandler(this.SetToClipboardButton_Click);
     //
     // DebugModeButton
     //
     this.DebugModeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.DebugModeButton.Location = new System.Drawing.Point(710, 3);
     this.DebugModeButton.Name = "DebugModeButton";
     this.DebugModeButton.Size = new System.Drawing.Size(131, 23);
     this.DebugModeButton.TabIndex = 0;
     this.DebugModeButton.Text = "Debug Mode";
     this.DebugModeButton.ThemeName = "VisualStudio2012Dark";
     //
     // EditVersions
     //
     this.EditVersions.Controls.Add(this.versionsListView);
     this.EditVersions.ItemSize = new System.Drawing.SizeF(145F, 24F);
     this.EditVersions.Location = new System.Drawing.Point(5, 30);
     this.EditVersions.Name = "EditVersions";
     this.EditVersions.Size = new System.Drawing.Size(848, 328);
     this.EditVersions.Text = "УПРАВЛЕНИЕ ВЕРСИЯМИ";
     //
     // versionsListView
     //
     this.versionsListView.AllowColumnReorder = false;
     this.versionsListView.AllowColumnResize = false;
     this.versionsListView.AllowEdit = false;
     this.versionsListView.AllowRemove = false;
     this.versionsListView.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.versionsListView.CheckOnClickMode = Telerik.WinControls.UI.CheckOnClickMode.FirstClick;
     listViewDetailColumn1.HeaderText = "Версия";
     listViewDetailColumn2.HeaderText = "Тип";
     listViewDetailColumn2.Width = 100F;
     listViewDetailColumn3.HeaderText = "Зависимость";
     listViewDetailColumn3.Width = 100F;
     this.versionsListView.Columns.AddRange(new Telerik.WinControls.UI.ListViewDetailColumn[] {
     listViewDetailColumn1,
     listViewDetailColumn2,
     listViewDetailColumn3});
     this.versionsListView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.versionsListView.EnableColumnSort = true;
     this.versionsListView.EnableFiltering = true;
     this.versionsListView.EnableSorting = true;
     this.versionsListView.HorizontalScrollState = Telerik.WinControls.UI.ScrollState.AlwaysHide;
     this.versionsListView.ItemSpacing = -1;
     this.versionsListView.Location = new System.Drawing.Point(0, 0);
     this.versionsListView.Name = "versionsListView";
     //
     //
     //
     this.versionsListView.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.versionsListView.RootElement.AngleTransform = 0F;
     this.versionsListView.RootElement.FlipText = false;
     this.versionsListView.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.versionsListView.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.versionsListView.SelectLastAddedItem = false;
     this.versionsListView.ShowItemToolTips = false;
     this.versionsListView.Size = new System.Drawing.Size(848, 328);
     this.versionsListView.TabIndex = 0;
     this.versionsListView.ThemeName = "VisualStudio2012Dark";
     this.versionsListView.VerticalScrollState = Telerik.WinControls.UI.ScrollState.AlwaysShow;
     this.versionsListView.ViewType = Telerik.WinControls.UI.ListViewType.DetailsView;
     this.versionsListView.ItemMouseClick += new Telerik.WinControls.UI.ListViewItemEventHandler(this.versionsListView_ItemMouseClick);
     //
     // AboutPage
     //
     this.AboutPage.Controls.Add(this.AboutPageView);
     this.AboutPage.ItemSize = new System.Drawing.SizeF(79F, 24F);
     this.AboutPage.Location = new System.Drawing.Point(5, 30);
     this.AboutPage.Name = "AboutPage";
     this.AboutPage.Size = new System.Drawing.Size(848, 328);
     this.AboutPage.Text = "О ЛАУНЧЕРЕ";
     //
     // AboutPageView
     //
     this.AboutPageView.Controls.Add(this.AboutPageViewPage);
     this.AboutPageView.Controls.Add(this.LicensesPage);
     this.AboutPageView.Controls.Add(this.SettingsPage);
     this.AboutPageView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.AboutPageView.Location = new System.Drawing.Point(0, 0);
     this.AboutPageView.Name = "AboutPageView";
     //
     //
     //
     this.AboutPageView.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.AboutPageView.RootElement.AngleTransform = 0F;
     this.AboutPageView.RootElement.FlipText = false;
     this.AboutPageView.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.AboutPageView.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.AboutPageView.SelectedPage = this.AboutPageViewPage;
     this.AboutPageView.Size = new System.Drawing.Size(848, 328);
     this.AboutPageView.TabIndex = 9;
     this.AboutPageView.ThemeName = "VisualStudio2012Dark";
     ((Telerik.WinControls.UI.RadPageViewStripElement)(this.AboutPageView.GetChildAt(0))).StripButtons = Telerik.WinControls.UI.StripViewButtons.None;
     ((Telerik.WinControls.UI.RadPageViewStripElement)(this.AboutPageView.GetChildAt(0))).ItemAlignment = Telerik.WinControls.UI.StripViewItemAlignment.Center;
     ((Telerik.WinControls.UI.RadPageViewStripElement)(this.AboutPageView.GetChildAt(0))).ItemFitMode = Telerik.WinControls.UI.StripViewItemFitMode.Fill;
     ((Telerik.WinControls.UI.RadPageViewStripElement)(this.AboutPageView.GetChildAt(0))).StripAlignment = Telerik.WinControls.UI.StripViewAlignment.Bottom;
     //
     // AboutPageViewPage
     //
     this.AboutPageViewPage.Controls.Add(this.radScrollablePanel2);
     this.AboutPageViewPage.Location = new System.Drawing.Point(5, 5);
     this.AboutPageViewPage.Name = "AboutPageViewPage";
     this.AboutPageViewPage.Size = new System.Drawing.Size(838, 293);
     this.AboutPageViewPage.Text = "О ЛАУНЧЕРЕ";
     //
     // radScrollablePanel2
     //
     this.radScrollablePanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.radScrollablePanel2.Location = new System.Drawing.Point(0, 0);
     this.radScrollablePanel2.Name = "radScrollablePanel2";
     //
     // radScrollablePanel2.PanelContainer
     //
     this.radScrollablePanel2.PanelContainer.Controls.Add(this.AboutVersion);
     this.radScrollablePanel2.PanelContainer.Controls.Add(this.label6);
     this.radScrollablePanel2.PanelContainer.Controls.Add(this.MCofflineDescLabel);
     this.radScrollablePanel2.PanelContainer.Controls.Add(this.radLabel1);
     this.radScrollablePanel2.PanelContainer.Controls.Add(this.PartnersLabel);
     this.radScrollablePanel2.PanelContainer.Controls.Add(this.CopyrightInfoLabel);
     this.radScrollablePanel2.PanelContainer.Controls.Add(this.label3);
     this.radScrollablePanel2.PanelContainer.Controls.Add(this.DevInfoLabel);
     this.radScrollablePanel2.PanelContainer.Controls.Add(this.label5);
     this.radScrollablePanel2.PanelContainer.Controls.Add(this.GratitudesDescLabel);
     this.radScrollablePanel2.PanelContainer.Controls.Add(this.GratitudesLabel);
     this.radScrollablePanel2.PanelContainer.Size = new System.Drawing.Size(836, 291);
     //
     //
     //
     this.radScrollablePanel2.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.radScrollablePanel2.RootElement.AngleTransform = 0F;
     this.radScrollablePanel2.RootElement.FlipText = false;
     this.radScrollablePanel2.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.radScrollablePanel2.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.radScrollablePanel2.Size = new System.Drawing.Size(838, 293);
     this.radScrollablePanel2.TabIndex = 9;
     this.radScrollablePanel2.Text = "radScrollablePanel2";
     this.radScrollablePanel2.ThemeName = "VisualStudio2012Dark";
     //
     // AboutVersion
     //
     this.AboutVersion.BackColor = System.Drawing.Color.Transparent;
     this.AboutVersion.ForeColor = System.Drawing.Color.DimGray;
     this.AboutVersion.Location = new System.Drawing.Point(122, 34);
     this.AboutVersion.MinimumSize = new System.Drawing.Size(58, 18);
     this.AboutVersion.Name = "AboutVersion";
     //
     //
     //
     this.AboutVersion.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.AboutVersion.RootElement.AngleTransform = 0F;
     this.AboutVersion.RootElement.FlipText = false;
     this.AboutVersion.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.AboutVersion.RootElement.MinSize = new System.Drawing.Size(58, 18);
     this.AboutVersion.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.AboutVersion.Size = new System.Drawing.Size(58, 18);
     this.AboutVersion.TabIndex = 1;
     this.AboutVersion.Text = "0.0.0.000";
     this.AboutVersion.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     this.AboutVersion.ThemeName = "VisualStudio2012Dark";
     ((Telerik.WinControls.UI.RadLabelElement)(this.AboutVersion.GetChildAt(0))).TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     ((Telerik.WinControls.UI.RadLabelElement)(this.AboutVersion.GetChildAt(0))).Text = "0.0.0.000";
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.AboutVersion.GetChildAt(0).GetChildAt(0))).BackColor = System.Drawing.Color.Transparent;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.label6.Cursor = System.Windows.Forms.Cursors.Hand;
     this.label6.ForeColor = System.Drawing.Color.Gray;
     this.label6.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label6.Location = new System.Drawing.Point(14, 201);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(127, 13);
     this.label6.TabIndex = 11;
     this.label6.Text = "http://vk.com/mcoffline";
     this.label6.Click += new System.EventHandler(this.urlLabel_Click);
     //
     // MCofflineDescLabel
     //
     this.MCofflineDescLabel.AutoSize = true;
     this.MCofflineDescLabel.BackColor = System.Drawing.Color.Transparent;
     this.MCofflineDescLabel.Font = new System.Drawing.Font("Segoe UI", 9.75F);
     this.MCofflineDescLabel.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.MCofflineDescLabel.Location = new System.Drawing.Point(14, 184);
     this.MCofflineDescLabel.Name = "MCofflineDescLabel";
     this.MCofflineDescLabel.Size = new System.Drawing.Size(402, 17);
     this.MCofflineDescLabel.TabIndex = 9;
     this.MCofflineDescLabel.Text = "MCoffline - лучшая программа для серверных администраторов!";
     //
     // radLabel1
     //
     this.radLabel1.BackColor = System.Drawing.Color.Transparent;
     this.radLabel1.Font = new System.Drawing.Font("Segoe UI", 20.25F);
     this.radLabel1.ForeColor = System.Drawing.Color.Transparent;
     this.radLabel1.Location = new System.Drawing.Point(3, 3);
     this.radLabel1.Name = "radLabel1";
     //
     //
     //
     this.radLabel1.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.radLabel1.RootElement.AngleTransform = 0F;
     this.radLabel1.RootElement.FlipText = false;
     this.radLabel1.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.radLabel1.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.radLabel1.Size = new System.Drawing.Size(175, 41);
     this.radLabel1.TabIndex = 0;
     this.radLabel1.Text = "FreeLauncher";
     this.radLabel1.ThemeName = "VisualStudio2012Dark";
     ((Telerik.WinControls.UI.RadLabelElement)(this.radLabel1.GetChildAt(0))).Text = "FreeLauncher";
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.radLabel1.GetChildAt(0).GetChildAt(0))).BackColor = System.Drawing.Color.Transparent;
     //
     // PartnersLabel
     //
     this.PartnersLabel.BackColor = System.Drawing.Color.Transparent;
     this.PartnersLabel.Font = new System.Drawing.Font("Segoe UI", 20.25F);
     this.PartnersLabel.ForeColor = System.Drawing.Color.Transparent;
     this.PartnersLabel.Location = new System.Drawing.Point(3, 147);
     this.PartnersLabel.Name = "PartnersLabel";
     //
     //
     //
     this.PartnersLabel.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.PartnersLabel.RootElement.AngleTransform = 0F;
     this.PartnersLabel.RootElement.FlipText = false;
     this.PartnersLabel.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.PartnersLabel.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.PartnersLabel.Size = new System.Drawing.Size(140, 41);
     this.PartnersLabel.TabIndex = 10;
     this.PartnersLabel.Text = "Партнёры";
     this.PartnersLabel.ThemeName = "VisualStudio2012Dark";
     ((Telerik.WinControls.UI.RadLabelElement)(this.PartnersLabel.GetChildAt(0))).Text = "Партнёры";
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.PartnersLabel.GetChildAt(0).GetChildAt(0))).BackColor = System.Drawing.Color.Transparent;
     //
     // CopyrightInfoLabel
     //
     this.CopyrightInfoLabel.AutoSize = true;
     this.CopyrightInfoLabel.BackColor = System.Drawing.Color.Transparent;
     this.CopyrightInfoLabel.Font = new System.Drawing.Font("Segoe UI Semibold", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.CopyrightInfoLabel.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.CopyrightInfoLabel.Location = new System.Drawing.Point(7, 248);
     this.CopyrightInfoLabel.Name = "CopyrightInfoLabel";
     this.CopyrightInfoLabel.Size = new System.Drawing.Size(464, 34);
     this.CopyrightInfoLabel.TabIndex = 4;
     this.CopyrightInfoLabel.Text = "\"Minecraft\" является торговой маркой Mojang AB. Все права защищены.\r\nMojang AB яв" +
     "ляется дочерней студией Microsoft Studios.";
     this.CopyrightInfoLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Cursor = System.Windows.Forms.Cursors.Hand;
     this.label3.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.label3.ForeColor = System.Drawing.Color.Gray;
     this.label3.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label3.Location = new System.Drawing.Point(14, 72);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(163, 15);
     this.label3.TabIndex = 5;
     this.label3.Text = "https://github.com/dedepete";
     this.label3.Click += new System.EventHandler(this.urlLabel_Click);
     //
     // DevInfoLabel
     //
     this.DevInfoLabel.AutoSize = true;
     this.DevInfoLabel.BackColor = System.Drawing.Color.Transparent;
     this.DevInfoLabel.Font = new System.Drawing.Font("Segoe UI", 9.75F);
     this.DevInfoLabel.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.DevInfoLabel.Location = new System.Drawing.Point(14, 55);
     this.DevInfoLabel.Name = "DevInfoLabel";
     this.DevInfoLabel.Size = new System.Drawing.Size(146, 17);
     this.DevInfoLabel.TabIndex = 3;
     this.DevInfoLabel.Text = "Разработано dedepete";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Cursor = System.Windows.Forms.Cursors.Hand;
     this.label5.ForeColor = System.Drawing.Color.Gray;
     this.label5.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label5.Location = new System.Drawing.Point(14, 135);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(117, 13);
     this.label5.TabIndex = 8;
     this.label5.Text = "http://ru-minecraft.ru";
     this.label5.Click += new System.EventHandler(this.urlLabel_Click);
     //
     // GratitudesDescLabel
     //
     this.GratitudesDescLabel.AutoSize = true;
     this.GratitudesDescLabel.BackColor = System.Drawing.Color.Transparent;
     this.GratitudesDescLabel.Font = new System.Drawing.Font("Segoe UI", 9.75F);
     this.GratitudesDescLabel.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.GratitudesDescLabel.Location = new System.Drawing.Point(14, 118);
     this.GratitudesDescLabel.Name = "GratitudesDescLabel";
     this.GratitudesDescLabel.Size = new System.Drawing.Size(449, 17);
     this.GratitudesDescLabel.TabIndex = 6;
     this.GratitudesDescLabel.Text = "Большое спасибо администрации портала ru-minecraft.ru за хост файлов";
     //
     // GratitudesLabel
     //
     this.GratitudesLabel.BackColor = System.Drawing.Color.Transparent;
     this.GratitudesLabel.Font = new System.Drawing.Font("Segoe UI", 20.25F);
     this.GratitudesLabel.ForeColor = System.Drawing.Color.Transparent;
     this.GratitudesLabel.Location = new System.Drawing.Point(3, 81);
     this.GratitudesLabel.Name = "GratitudesLabel";
     //
     //
     //
     this.GratitudesLabel.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.GratitudesLabel.RootElement.AngleTransform = 0F;
     this.GratitudesLabel.RootElement.FlipText = false;
     this.GratitudesLabel.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.GratitudesLabel.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.GratitudesLabel.Size = new System.Drawing.Size(202, 41);
     this.GratitudesLabel.TabIndex = 7;
     this.GratitudesLabel.Text = "Благодарности";
     this.GratitudesLabel.ThemeName = "VisualStudio2012Dark";
     ((Telerik.WinControls.UI.RadLabelElement)(this.GratitudesLabel.GetChildAt(0))).Text = "Благодарности";
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.GratitudesLabel.GetChildAt(0).GetChildAt(0))).BackColor = System.Drawing.Color.Transparent;
     //
     // LicensesPage
     //
     this.LicensesPage.Controls.Add(this.licensePageView);
     this.LicensesPage.Location = new System.Drawing.Point(5, 5);
     this.LicensesPage.Name = "LicensesPage";
     this.LicensesPage.Size = new System.Drawing.Size(838, 293);
     this.LicensesPage.Text = "ЛИЦЕНЗИИ";
     //
     // licensePageView
     //
     this.licensePageView.Controls.Add(this.FreeLauncherLicense);
     this.licensePageView.Controls.Add(this.dotMCLauncherLicense);
     this.licensePageView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.licensePageView.Location = new System.Drawing.Point(0, 0);
     this.licensePageView.Name = "licensePageView";
     //
     //
     //
     this.licensePageView.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.licensePageView.RootElement.AngleTransform = 0F;
     this.licensePageView.RootElement.FlipText = false;
     this.licensePageView.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.licensePageView.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.licensePageView.SelectedPage = this.FreeLauncherLicense;
     this.licensePageView.Size = new System.Drawing.Size(838, 293);
     this.licensePageView.TabIndex = 0;
     this.licensePageView.Text = "radPageView3";
     this.licensePageView.ThemeName = "VisualStudio2012Dark";
     this.licensePageView.ViewMode = Telerik.WinControls.UI.PageViewMode.Backstage;
     ((Telerik.WinControls.UI.StripViewItemContainer)(this.licensePageView.GetChildAt(0).GetChildAt(0))).MinSize = new System.Drawing.Size(150, 0);
     //
     // FreeLauncherLicense
     //
     this.FreeLauncherLicense.AutoScroll = true;
     this.FreeLauncherLicense.Controls.Add(this.FreeLauncherLicenseText);
     this.FreeLauncherLicense.Location = new System.Drawing.Point(155, 4);
     this.FreeLauncherLicense.Name = "FreeLauncherLicense";
     this.FreeLauncherLicense.Size = new System.Drawing.Size(679, 285);
     this.FreeLauncherLicense.Text = "FreeLauncher";
     //
     // FreeLauncherLicenseText
     //
     this.FreeLauncherLicenseText.Dock = System.Windows.Forms.DockStyle.Fill;
     this.FreeLauncherLicenseText.Location = new System.Drawing.Point(0, 0);
     this.FreeLauncherLicenseText.Name = "FreeLauncherLicenseText";
     this.FreeLauncherLicenseText.Size = new System.Drawing.Size(679, 285);
     this.FreeLauncherLicenseText.TabIndex = 2;
     this.FreeLauncherLicenseText.Text = resources.GetString("FreeLauncherLicenseText.Text");
     this.FreeLauncherLicenseText.ThemeName = "VisualStudio2012Dark";
     ((Telerik.WinControls.UI.RadLabelElement)(this.FreeLauncherLicenseText.GetChildAt(0))).Text = resources.GetString("resource.Text");
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.FreeLauncherLicenseText.GetChildAt(0).GetChildAt(0))).BackColor = System.Drawing.Color.Transparent;
     //
     // dotMCLauncherLicense
     //
     this.dotMCLauncherLicense.AutoScroll = true;
     this.dotMCLauncherLicense.Controls.Add(this.dotMCLauncherLicenseText);
     this.dotMCLauncherLicense.Location = new System.Drawing.Point(155, 4);
     this.dotMCLauncherLicense.Name = "dotMCLauncherLicense";
     this.dotMCLauncherLicense.Size = new System.Drawing.Size(679, 285);
     this.dotMCLauncherLicense.Text = "dotMCLauncher";
     //
     // dotMCLauncherLicenseText
     //
     this.dotMCLauncherLicenseText.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dotMCLauncherLicenseText.Location = new System.Drawing.Point(0, 0);
     this.dotMCLauncherLicenseText.Name = "dotMCLauncherLicenseText";
     this.dotMCLauncherLicenseText.Size = new System.Drawing.Size(679, 285);
     this.dotMCLauncherLicenseText.TabIndex = 1;
     this.dotMCLauncherLicenseText.Text = resources.GetString("dotMCLauncherLicenseText.Text");
     this.dotMCLauncherLicenseText.ThemeName = "VisualStudio2012Dark";
     ((Telerik.WinControls.UI.RadLabelElement)(this.dotMCLauncherLicenseText.GetChildAt(0))).Text = resources.GetString("resource.Text1");
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.dotMCLauncherLicenseText.GetChildAt(0).GetChildAt(0))).BackColor = System.Drawing.Color.Transparent;
     //
     // SettingsPage
     //
     this.SettingsPage.Controls.Add(this.radScrollablePanel1);
     this.SettingsPage.Location = new System.Drawing.Point(5, 5);
     this.SettingsPage.Name = "SettingsPage";
     this.SettingsPage.Size = new System.Drawing.Size(838, 293);
     this.SettingsPage.Text = "НАСТРОЙКИ";
     //
     // radScrollablePanel1
     //
     this.radScrollablePanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.radScrollablePanel1.Location = new System.Drawing.Point(0, 0);
     this.radScrollablePanel1.Name = "radScrollablePanel1";
     //
     // radScrollablePanel1.PanelContainer
     //
     this.radScrollablePanel1.PanelContainer.Controls.Add(this.radGroupBox2);
     this.radScrollablePanel1.PanelContainer.Controls.Add(this.radGroupBox1);
     this.radScrollablePanel1.PanelContainer.Size = new System.Drawing.Size(836, 291);
     //
     //
     //
     this.radScrollablePanel1.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.radScrollablePanel1.RootElement.AngleTransform = 0F;
     this.radScrollablePanel1.RootElement.FlipText = false;
     this.radScrollablePanel1.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.radScrollablePanel1.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.radScrollablePanel1.Size = new System.Drawing.Size(838, 293);
     this.radScrollablePanel1.TabIndex = 1;
     this.radScrollablePanel1.Text = "radScrollablePanel1";
     this.radScrollablePanel1.ThemeName = "VisualStudio2012Dark";
     //
     // radGroupBox2
     //
     this.radGroupBox2.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox2.BackColor = System.Drawing.Color.Transparent;
     this.radGroupBox2.Controls.Add(this.CloseGameOutput);
     this.radGroupBox2.Controls.Add(this.UseGamePrefix);
     this.radGroupBox2.Controls.Add(this.EnableMinecraftLogging);
     this.radGroupBox2.HeaderText = "Логирование";
     this.radGroupBox2.Location = new System.Drawing.Point(402, 18);
     this.radGroupBox2.Name = "radGroupBox2";
     //
     //
     //
     this.radGroupBox2.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.radGroupBox2.RootElement.AngleTransform = 0F;
     this.radGroupBox2.RootElement.FlipText = false;
     this.radGroupBox2.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.radGroupBox2.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.radGroupBox2.Size = new System.Drawing.Size(357, 121);
     this.radGroupBox2.TabIndex = 1;
     this.radGroupBox2.Text = "Логирование";
     this.radGroupBox2.ThemeName = "VisualStudio2012Dark";
     //
     // CloseGameOutput
     //
     this.CloseGameOutput.Location = new System.Drawing.Point(5, 69);
     this.CloseGameOutput.Name = "CloseGameOutput";
     //
     //
     //
     this.CloseGameOutput.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.CloseGameOutput.RootElement.AngleTransform = 0F;
     this.CloseGameOutput.RootElement.FlipText = false;
     this.CloseGameOutput.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.CloseGameOutput.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.CloseGameOutput.Size = new System.Drawing.Size(327, 18);
     this.CloseGameOutput.TabIndex = 2;
     this.CloseGameOutput.Text = "Закрывать вкладку, если завершение прошло без ошибок";
     this.CloseGameOutput.ThemeName = "VisualStudio2012Dark";
     //
     // UseGamePrefix
     //
     this.UseGamePrefix.CheckState = System.Windows.Forms.CheckState.Checked;
     this.UseGamePrefix.Location = new System.Drawing.Point(5, 45);
     this.UseGamePrefix.Name = "UseGamePrefix";
     //
     //
     //
     this.UseGamePrefix.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.UseGamePrefix.RootElement.AngleTransform = 0F;
     this.UseGamePrefix.RootElement.FlipText = false;
     this.UseGamePrefix.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.UseGamePrefix.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.UseGamePrefix.Size = new System.Drawing.Size(288, 18);
     this.UseGamePrefix.TabIndex = 1;
     this.UseGamePrefix.Text = "Использовать префикс [GAME] для логов Minecraft";
     this.UseGamePrefix.ThemeName = "VisualStudio2012Dark";
     this.UseGamePrefix.ToggleState = Telerik.WinControls.Enumerations.ToggleState.On;
     //
     // EnableMinecraftLogging
     //
     this.EnableMinecraftLogging.CheckState = System.Windows.Forms.CheckState.Checked;
     this.EnableMinecraftLogging.Location = new System.Drawing.Point(5, 21);
     this.EnableMinecraftLogging.Name = "EnableMinecraftLogging";
     //
     //
     //
     this.EnableMinecraftLogging.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.EnableMinecraftLogging.RootElement.AngleTransform = 0F;
     this.EnableMinecraftLogging.RootElement.FlipText = false;
     this.EnableMinecraftLogging.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.EnableMinecraftLogging.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.EnableMinecraftLogging.Size = new System.Drawing.Size(177, 18);
     this.EnableMinecraftLogging.TabIndex = 0;
     this.EnableMinecraftLogging.Text = "Выводить лог игры в консоль";
     this.EnableMinecraftLogging.ThemeName = "VisualStudio2012Dark";
     this.EnableMinecraftLogging.ToggleState = Telerik.WinControls.Enumerations.ToggleState.On;
     //
     // radGroupBox1
     //
     this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox1.BackColor = System.Drawing.Color.Transparent;
     this.radGroupBox1.Controls.Add(this.radLabel4);
     this.radGroupBox1.Controls.Add(this.LangDropDownList);
     this.radGroupBox1.Controls.Add(this.EnableMinecraftUpdateAlerts);
     this.radGroupBox1.Controls.Add(this.radCheckBox1);
     this.radGroupBox1.HeaderText = "Основные";
     this.radGroupBox1.Location = new System.Drawing.Point(17, 18);
     this.radGroupBox1.Name = "radGroupBox1";
     //
     //
     //
     this.radGroupBox1.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.radGroupBox1.RootElement.AngleTransform = 0F;
     this.radGroupBox1.RootElement.FlipText = false;
     this.radGroupBox1.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.radGroupBox1.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.radGroupBox1.Size = new System.Drawing.Size(357, 121);
     this.radGroupBox1.TabIndex = 0;
     this.radGroupBox1.Text = "Основные";
     this.radGroupBox1.ThemeName = "VisualStudio2012Dark";
     //
     // radLabel4
     //
     this.radLabel4.Location = new System.Drawing.Point(5, 69);
     this.radLabel4.Name = "radLabel4";
     //
     //
     //
     this.radLabel4.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.radLabel4.RootElement.AngleTransform = 0F;
     this.radLabel4.RootElement.FlipText = false;
     this.radLabel4.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.radLabel4.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.radLabel4.Size = new System.Drawing.Size(87, 18);
     this.radLabel4.TabIndex = 5;
     this.radLabel4.Text = "Язык/Language:";
     this.radLabel4.ThemeName = "VisualStudio2012Dark";
     ((Telerik.WinControls.UI.RadLabelElement)(this.radLabel4.GetChildAt(0))).Text = "Язык/Language:";
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.radLabel4.GetChildAt(0).GetChildAt(0))).Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
     //
     // LangDropDownList
     //
     this.LangDropDownList.AutoCompleteDisplayMember = null;
     this.LangDropDownList.AutoCompleteValueMember = null;
     this.LangDropDownList.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
     radListDataItem1.Tag = "ru-RU";
     radListDataItem1.Text = "Русский (ru-default)";
     this.LangDropDownList.Items.Add(radListDataItem1);
     this.LangDropDownList.Location = new System.Drawing.Point(150, 69);
     this.LangDropDownList.Name = "LangDropDownList";
     //
     //
     //
     this.LangDropDownList.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.LangDropDownList.RootElement.AngleTransform = 0F;
     this.LangDropDownList.RootElement.FlipText = false;
     this.LangDropDownList.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.LangDropDownList.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.LangDropDownList.Size = new System.Drawing.Size(202, 24);
     this.LangDropDownList.TabIndex = 3;
     this.LangDropDownList.Text = "Русский (ru-RU)";
     this.LangDropDownList.ThemeName = "VisualStudio2012Dark";
     this.LangDropDownList.SelectedIndexChanged += new Telerik.WinControls.UI.Data.PositionChangedEventHandler(this.LangDropDownList_SelectedIndexChanged);
     //
     // EnableMinecraftUpdateAlerts
     //
     this.EnableMinecraftUpdateAlerts.CheckState = System.Windows.Forms.CheckState.Checked;
     this.EnableMinecraftUpdateAlerts.Enabled = false;
     this.EnableMinecraftUpdateAlerts.Location = new System.Drawing.Point(5, 45);
     this.EnableMinecraftUpdateAlerts.Name = "EnableMinecraftUpdateAlerts";
     //
     //
     //
     this.EnableMinecraftUpdateAlerts.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.EnableMinecraftUpdateAlerts.RootElement.AngleTransform = 0F;
     this.EnableMinecraftUpdateAlerts.RootElement.FlipText = false;
     this.EnableMinecraftUpdateAlerts.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.EnableMinecraftUpdateAlerts.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.EnableMinecraftUpdateAlerts.Size = new System.Drawing.Size(340, 18);
     this.EnableMinecraftUpdateAlerts.TabIndex = 2;
     this.EnableMinecraftUpdateAlerts.Text = "Показывать уведомления о наличии новых версий Minecraft";
     this.EnableMinecraftUpdateAlerts.ThemeName = "VisualStudio2012Dark";
     this.EnableMinecraftUpdateAlerts.ToggleState = Telerik.WinControls.Enumerations.ToggleState.On;
     //
     // radCheckBox1
     //
     this.radCheckBox1.Enabled = false;
     this.radCheckBox1.Location = new System.Drawing.Point(5, 21);
     this.radCheckBox1.Name = "radCheckBox1";
     //
     //
     //
     this.radCheckBox1.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.radCheckBox1.RootElement.AngleTransform = 0F;
     this.radCheckBox1.RootElement.FlipText = false;
     this.radCheckBox1.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.radCheckBox1.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.radCheckBox1.Size = new System.Drawing.Size(257, 18);
     this.radCheckBox1.TabIndex = 0;
     this.radCheckBox1.Text = "Проверять наличие обновлений программы";
     this.radCheckBox1.ThemeName = "VisualStudio2012Dark";
     //
     // StatusBar
     //
     this.StatusBar.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.StatusBar.Location = new System.Drawing.Point(0, 363);
     this.StatusBar.Name = "StatusBar";
     this.StatusBar.Size = new System.Drawing.Size(858, 24);
     this.StatusBar.TabIndex = 4;
     this.StatusBar.Text = "StatusBar";
     this.StatusBar.ThemeName = "VisualStudio2012Dark";
     this.StatusBar.Visible = false;
     //
     // radPanel1
     //
     this.radPanel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("radPanel1.BackgroundImage")));
     this.radPanel1.Controls.Add(this.DeleteProfileButton);
     this.radPanel1.Controls.Add(this.ManageUsersButton);
     this.radPanel1.Controls.Add(this.NicknameDropDownList);
     this.radPanel1.Controls.Add(this.SelectedVersion);
     this.radPanel1.Controls.Add(this.LogoBox);
     this.radPanel1.Controls.Add(this.LaunchButton);
     this.radPanel1.Controls.Add(this.profilesDropDownBox);
     this.radPanel1.Controls.Add(this.EditProfile);
     this.radPanel1.Controls.Add(this.AddProfile);
     this.radPanel1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.radPanel1.Location = new System.Drawing.Point(0, 387);
     this.radPanel1.Name = "radPanel1";
     //
     //
     //
     this.radPanel1.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.radPanel1.RootElement.AngleTransform = 0F;
     this.radPanel1.RootElement.FlipText = false;
     this.radPanel1.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.radPanel1.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.radPanel1.Size = new System.Drawing.Size(858, 59);
     this.radPanel1.TabIndex = 3;
     this.radPanel1.ThemeName = "VisualStudio2012Dark";
     //
     // DeleteProfileButton
     //
     this.DeleteProfileButton.Image = ((System.Drawing.Image)(resources.GetObject("DeleteProfileButton.Image")));
     this.DeleteProfileButton.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.DeleteProfileButton.Location = new System.Drawing.Point(6, 6);
     this.DeleteProfileButton.Name = "DeleteProfileButton";
     this.DeleteProfileButton.Size = new System.Drawing.Size(32, 24);
     this.DeleteProfileButton.TabIndex = 8;
     this.DeleteProfileButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.DeleteProfileButton.ThemeName = "VisualStudio2012Dark";
     this.DeleteProfileButton.Click += new System.EventHandler(this.DeleteProfileButton_Click);
     //
     // ManageUsersButton
     //
     this.ManageUsersButton.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.ManageUsersButton.Image = global::FreeLauncher.Properties.Resources.edit;
     this.ManageUsersButton.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.ManageUsersButton.Location = new System.Drawing.Point(513, 6);
     this.ManageUsersButton.Name = "ManageUsersButton";
     //
     //
     //
     this.ManageUsersButton.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.ManageUsersButton.RootElement.AngleTransform = 0F;
     this.ManageUsersButton.RootElement.FlipText = false;
     this.ManageUsersButton.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.ManageUsersButton.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.ManageUsersButton.Size = new System.Drawing.Size(32, 24);
     this.ManageUsersButton.TabIndex = 7;
     this.ManageUsersButton.ThemeName = "VisualStudio2012Dark";
     this.ManageUsersButton.Click += new System.EventHandler(this.ManageUsersButton_Click);
     //
     // NicknameDropDownList
     //
     this.NicknameDropDownList.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.NicknameDropDownList.AutoCompleteDisplayMember = null;
     this.NicknameDropDownList.AutoCompleteValueMember = null;
     this.NicknameDropDownList.Location = new System.Drawing.Point(314, 6);
     this.NicknameDropDownList.Name = "NicknameDropDownList";
     this.NicknameDropDownList.NullText = "Ник";
     //
     //
     //
     this.NicknameDropDownList.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.NicknameDropDownList.RootElement.AngleTransform = 0F;
     this.NicknameDropDownList.RootElement.FlipText = false;
     this.NicknameDropDownList.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.NicknameDropDownList.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.NicknameDropDownList.Size = new System.Drawing.Size(196, 24);
     this.NicknameDropDownList.TabIndex = 3;
     this.NicknameDropDownList.ThemeName = "VisualStudio2012Dark";
     this.NicknameDropDownList.SelectedIndexChanged += new Telerik.WinControls.UI.Data.PositionChangedEventHandler(this.NicknameDropDownList_SelectedIndexChanged);
     //
     // SelectedVersion
     //
     this.SelectedVersion.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.SelectedVersion.AutoSize = true;
     this.SelectedVersion.BackColor = System.Drawing.Color.Transparent;
     this.SelectedVersion.ForeColor = System.Drawing.Color.White;
     this.SelectedVersion.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.SelectedVersion.Location = new System.Drawing.Point(631, 42);
     this.SelectedVersion.MinimumSize = new System.Drawing.Size(220, 13);
     this.SelectedVersion.Name = "SelectedVersion";
     this.SelectedVersion.Size = new System.Drawing.Size(220, 13);
     this.SelectedVersion.TabIndex = 6;
     this.SelectedVersion.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // LogoBox
     //
     this.LogoBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.LogoBox.BackColor = System.Drawing.Color.Transparent;
     this.LogoBox.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
     this.LogoBox.Image = ((System.Drawing.Image)(resources.GetObject("LogoBox.Image")));
     this.LogoBox.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.LogoBox.Location = new System.Drawing.Point(651, -11);
     this.LogoBox.Name = "LogoBox";
     this.LogoBox.Size = new System.Drawing.Size(181, 84);
     this.LogoBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.LogoBox.TabIndex = 5;
     this.LogoBox.TabStop = false;
     //
     // LaunchButton
     //
     this.LaunchButton.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.LaunchButton.Location = new System.Drawing.Point(314, 33);
     this.LaunchButton.Name = "LaunchButton";
     //
     //
     //
     this.LaunchButton.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.LaunchButton.RootElement.AngleTransform = 0F;
     this.LaunchButton.RootElement.FlipText = false;
     this.LaunchButton.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.LaunchButton.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.LaunchButton.Size = new System.Drawing.Size(231, 22);
     this.LaunchButton.TabIndex = 4;
     this.LaunchButton.Text = "Запуск игры";
     this.LaunchButton.ThemeName = "VisualStudio2012Dark";
     this.LaunchButton.Click += new System.EventHandler(this.LaunchButton_Click);
     //
     // profilesDropDownBox
     //
     this.profilesDropDownBox.AutoCompleteDisplayMember = null;
     this.profilesDropDownBox.AutoCompleteValueMember = null;
     this.profilesDropDownBox.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
     this.profilesDropDownBox.Location = new System.Drawing.Point(41, 6);
     this.profilesDropDownBox.Name = "profilesDropDownBox";
     //
     //
     //
     this.profilesDropDownBox.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.profilesDropDownBox.RootElement.AngleTransform = 0F;
     this.profilesDropDownBox.RootElement.FlipText = false;
     this.profilesDropDownBox.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.profilesDropDownBox.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.profilesDropDownBox.Size = new System.Drawing.Size(191, 24);
     this.profilesDropDownBox.TabIndex = 2;
     this.profilesDropDownBox.ThemeName = "VisualStudio2012Dark";
     this.profilesDropDownBox.SelectedIndexChanged += new Telerik.WinControls.UI.Data.PositionChangedEventHandler(this.profilesDropDownBox_SelectedIndexChanged);
     //
     // EditProfile
     //
     this.EditProfile.Location = new System.Drawing.Point(122, 33);
     this.EditProfile.Name = "EditProfile";
     //
     //
     //
     this.EditProfile.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.EditProfile.RootElement.AngleTransform = 0F;
     this.EditProfile.RootElement.FlipText = false;
     this.EditProfile.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.EditProfile.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.EditProfile.Size = new System.Drawing.Size(110, 22);
     this.EditProfile.TabIndex = 1;
     this.EditProfile.Text = "Изменить профиль";
     this.EditProfile.TextWrap = true;
     this.EditProfile.ThemeName = "VisualStudio2012Dark";
     this.EditProfile.Click += new System.EventHandler(this.EditProfile_Click);
     //
     // AddProfile
     //
     this.AddProfile.Location = new System.Drawing.Point(6, 33);
     this.AddProfile.Name = "AddProfile";
     //
     //
     //
     this.AddProfile.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.AddProfile.RootElement.AngleTransform = 0F;
     this.AddProfile.RootElement.FlipText = false;
     this.AddProfile.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.AddProfile.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.AddProfile.Size = new System.Drawing.Size(110, 22);
     this.AddProfile.TabIndex = 0;
     this.AddProfile.Text = "Добавить профиль";
     this.AddProfile.TextWrap = true;
     this.AddProfile.ThemeName = "VisualStudio2012Dark";
     this.AddProfile.Click += new System.EventHandler(this.AddProfile_Click);
     //
     // LauncherForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(858, 446);
     this.Controls.Add(this.mainPageView);
     this.Controls.Add(this.StatusBar);
     this.Controls.Add(this.radPanel1);
     this.MinimumSize = new System.Drawing.Size(712, 446);
     this.Name = "LauncherForm";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.Text = "FreeLauncher";
     this.ThemeName = "VisualStudio2012Dark";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.LauncherForm_FormClosing);
     ((System.ComponentModel.ISupportInitialize)(this.mainPageView)).EndInit();
     this.mainPageView.ResumeLayout(false);
     this.News.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.webPanel)).EndInit();
     this.webPanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.BackWebButton)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ForwardWebButton)).EndInit();
     this.ConsolePage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ConsoleOptionsPanel)).EndInit();
     this.ConsoleOptionsPanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.SetToClipboardButton)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DebugModeButton)).EndInit();
     this.EditVersions.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.versionsListView)).EndInit();
     this.AboutPage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.AboutPageView)).EndInit();
     this.AboutPageView.ResumeLayout(false);
     this.AboutPageViewPage.ResumeLayout(false);
     this.radScrollablePanel2.PanelContainer.ResumeLayout(false);
     this.radScrollablePanel2.PanelContainer.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radScrollablePanel2)).EndInit();
     this.radScrollablePanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.AboutVersion)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PartnersLabel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GratitudesLabel)).EndInit();
     this.LicensesPage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.licensePageView)).EndInit();
     this.licensePageView.ResumeLayout(false);
     this.FreeLauncherLicense.ResumeLayout(false);
     this.FreeLauncherLicense.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.FreeLauncherLicenseText)).EndInit();
     this.dotMCLauncherLicense.ResumeLayout(false);
     this.dotMCLauncherLicense.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dotMCLauncherLicenseText)).EndInit();
     this.SettingsPage.ResumeLayout(false);
     this.radScrollablePanel1.PanelContainer.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radScrollablePanel1)).EndInit();
     this.radScrollablePanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).EndInit();
     this.radGroupBox2.ResumeLayout(false);
     this.radGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CloseGameOutput)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.UseGamePrefix)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EnableMinecraftLogging)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
     this.radGroupBox1.ResumeLayout(false);
     this.radGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LangDropDownList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EnableMinecraftUpdateAlerts)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.StatusBar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
     this.radPanel1.ResumeLayout(false);
     this.radPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DeleteProfileButton)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ManageUsersButton)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NicknameDropDownList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LogoBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LaunchButton)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.profilesDropDownBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EditProfile)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.AddProfile)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            Telerik.WinControls.UI.RadListDataItem radListDataItem1 = new Telerik.WinControls.UI.RadListDataItem();
            Telerik.WinControls.UI.RadListDataItem radListDataItem2 = new Telerik.WinControls.UI.RadListDataItem();
            Telerik.WinControls.UI.RadListDataItem radListDataItem3 = new Telerik.WinControls.UI.RadListDataItem();
            this.radGroupBox3 = new Telerik.WinControls.UI.RadGroupBox();
            this.javaExecutableBox = new Telerik.WinControls.UI.RadTextBox();
            this.JavaExecutableCheckBox = new Telerik.WinControls.UI.RadCheckBox();
            this.javaArgumentsBox = new Telerik.WinControls.UI.RadTextBox();
            this.JavaArgumentsCheckBox = new Telerik.WinControls.UI.RadCheckBox();
            this.radGroupBox2 = new Telerik.WinControls.UI.RadGroupBox();
            this.VersionSelector = new Telerik.WinControls.UI.RadPageView();
            this.officialVersionsPage = new Telerik.WinControls.UI.RadPageViewPage();
            this.snapshotsCheckBox = new Telerik.WinControls.UI.RadCheckBox();
            this.otherCheckBox = new Telerik.WinControls.UI.RadCheckBox();
            this.betaCheckBox = new Telerik.WinControls.UI.RadCheckBox();
            this.versionsDropDownList = new Telerik.WinControls.UI.RadDropDownList();
            this.alphaCheckBox = new Telerik.WinControls.UI.RadCheckBox();
            this.modVersionsPage = new Telerik.WinControls.UI.RadPageViewPage();
            this.combinedCheckBox = new Telerik.WinControls.UI.RadCheckBox();
            this.forgeCheckBox = new Telerik.WinControls.UI.RadCheckBox();
            this.liteCheckBox = new Telerik.WinControls.UI.RadCheckBox();
            this.optifineCheckBox = new Telerik.WinControls.UI.RadCheckBox();
            this.modVersionsDropDownList = new Telerik.WinControls.UI.RadDropDownList();
            this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
            this.radButton1 = new Telerik.WinControls.UI.RadButton();
            this.portTextBox = new Telerik.WinControls.UI.RadTextBox();
            this.ipTextBox = new Telerik.WinControls.UI.RadTextBox();
            this.FastConnectCheckBox = new Telerik.WinControls.UI.RadCheckBox();
            this.ActionAfterLaunchLabel = new Telerik.WinControls.UI.RadLabel();
            this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
            this.yResolutionBox = new Telerik.WinControls.UI.RadTextBox();
            this.xResolutionBox = new Telerik.WinControls.UI.RadTextBox();
            this.WindowResolutionLabel = new Telerik.WinControls.UI.RadLabel();
            this.stateBox = new Telerik.WinControls.UI.RadDropDownList();
            this.gameDirectoryBox = new Telerik.WinControls.UI.RadTextBox();
            this.GameDirectoryCheckBox = new Telerik.WinControls.UI.RadCheckBox();
            this.ProfileNameLabel = new Telerik.WinControls.UI.RadLabel();
            this.nameBox = new Telerik.WinControls.UI.RadTextBox();
            this.cancelButton = new Telerik.WinControls.UI.RadButton();
            this.openGameDirectoryButton = new Telerik.WinControls.UI.RadButton();
            this.saveProfileButton = new Telerik.WinControls.UI.RadButton();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox3)).BeginInit();
            this.radGroupBox3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.javaExecutableBox)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.JavaExecutableCheckBox)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.javaArgumentsBox)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.JavaArgumentsCheckBox)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).BeginInit();
            this.radGroupBox2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.VersionSelector)).BeginInit();
            this.VersionSelector.SuspendLayout();
            this.officialVersionsPage.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.snapshotsCheckBox)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.otherCheckBox)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.betaCheckBox)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.versionsDropDownList)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.alphaCheckBox)).BeginInit();
            this.modVersionsPage.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.combinedCheckBox)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.forgeCheckBox)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.liteCheckBox)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.optifineCheckBox)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.modVersionsDropDownList)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
            this.radGroupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radButton1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.portTextBox)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ipTextBox)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.FastConnectCheckBox)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ActionAfterLaunchLabel)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.yResolutionBox)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xResolutionBox)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.WindowResolutionLabel)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.stateBox)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gameDirectoryBox)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.GameDirectoryCheckBox)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ProfileNameLabel)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.nameBox)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cancelButton)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.openGameDirectoryButton)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.saveProfileButton)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // radGroupBox3
            // 
            this.radGroupBox3.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox3.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
            this.radGroupBox3.Controls.Add(this.javaExecutableBox);
            this.radGroupBox3.Controls.Add(this.JavaExecutableCheckBox);
            this.radGroupBox3.Controls.Add(this.javaArgumentsBox);
            this.radGroupBox3.Controls.Add(this.JavaArgumentsCheckBox);
            this.radGroupBox3.HeaderText = "Настройки Java";
            this.radGroupBox3.Location = new System.Drawing.Point(5, 347);
            this.radGroupBox3.Name = "radGroupBox3";
            // 
            // 
            // 
            this.radGroupBox3.RootElement.AccessibleDescription = null;
            this.radGroupBox3.RootElement.AccessibleName = null;
            this.radGroupBox3.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
            this.radGroupBox3.RootElement.AngleTransform = 0F;
            this.radGroupBox3.RootElement.FlipText = false;
            this.radGroupBox3.RootElement.Margin = new System.Windows.Forms.Padding(0);
            this.radGroupBox3.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
            this.radGroupBox3.Size = new System.Drawing.Size(330, 75);
            this.radGroupBox3.TabIndex = 7;
            this.radGroupBox3.Text = "Настройки Java";
            this.radGroupBox3.ThemeName = "VisualStudio2012Dark";
            // 
            // javaExecutableBox
            // 
            this.javaExecutableBox.Enabled = false;
            this.javaExecutableBox.Location = new System.Drawing.Point(145, 20);
            this.javaExecutableBox.Name = "javaExecutableBox";
            // 
            // 
            // 
            this.javaExecutableBox.RootElement.AccessibleDescription = null;
            this.javaExecutableBox.RootElement.AccessibleName = null;
            this.javaExecutableBox.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
            this.javaExecutableBox.RootElement.AngleTransform = 0F;
            this.javaExecutableBox.RootElement.FlipText = false;
            this.javaExecutableBox.RootElement.Margin = new System.Windows.Forms.Padding(0);
            this.javaExecutableBox.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
            this.javaExecutableBox.Size = new System.Drawing.Size(177, 21);
            this.javaExecutableBox.TabIndex = 7;
            this.javaExecutableBox.ThemeName = "VisualStudio2012Dark";
            // 
            // JavaExecutableCheckBox
            // 
            this.JavaExecutableCheckBox.Location = new System.Drawing.Point(3, 21);
            this.JavaExecutableCheckBox.Name = "JavaExecutableCheckBox";
            // 
            // 
            // 
            this.JavaExecutableCheckBox.RootElement.AccessibleDescription = null;
            this.JavaExecutableCheckBox.RootElement.AccessibleName = null;
            this.JavaExecutableCheckBox.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
            this.JavaExecutableCheckBox.RootElement.AngleTransform = 0F;
            this.JavaExecutableCheckBox.RootElement.FlipText = false;
            this.JavaExecutableCheckBox.RootElement.Margin = new System.Windows.Forms.Padding(0);
            this.JavaExecutableCheckBox.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
            this.JavaExecutableCheckBox.Size = new System.Drawing.Size(128, 18);
            this.JavaExecutableCheckBox.TabIndex = 6;
            this.JavaExecutableCheckBox.Text = "Исполняемый файл:";
            this.JavaExecutableCheckBox.ThemeName = "VisualStudio2012Dark";
            this.JavaExecutableCheckBox.ToggleStateChanged += new Telerik.WinControls.UI.StateChangedEventHandler(this.javaExecutableCheckBox_ToggleStateChanged);
            ((Telerik.WinControls.UI.RadCheckBoxElement)(this.JavaExecutableCheckBox.GetChildAt(0))).Text = "Исполняемый файл:";
            ((Telerik.WinControls.Primitives.FillPrimitive)(this.JavaExecutableCheckBox.GetChildAt(0).GetChildAt(0))).Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
            // 
            // javaArgumentsBox
            // 
            this.javaArgumentsBox.Enabled = false;
            this.javaArgumentsBox.Location = new System.Drawing.Point(145, 47);
            this.javaArgumentsBox.Name = "javaArgumentsBox";
            // 
            // 
            // 
            this.javaArgumentsBox.RootElement.AccessibleDescription = null;
            this.javaArgumentsBox.RootElement.AccessibleName = null;
            this.javaArgumentsBox.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
            this.javaArgumentsBox.RootElement.AngleTransform = 0F;
            this.javaArgumentsBox.RootElement.FlipText = false;
            this.javaArgumentsBox.RootElement.Margin = new System.Windows.Forms.Padding(0);
            this.javaArgumentsBox.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
            this.javaArgumentsBox.Size = new System.Drawing.Size(177, 21);
            this.javaArgumentsBox.TabIndex = 5;
            this.javaArgumentsBox.ThemeName = "VisualStudio2012Dark";
            // 
            // JavaArgumentsCheckBox
            // 
            this.JavaArgumentsCheckBox.Location = new System.Drawing.Point(3, 48);
            this.JavaArgumentsCheckBox.Name = "JavaArgumentsCheckBox";
            // 
            // 
            // 
            this.JavaArgumentsCheckBox.RootElement.AccessibleDescription = null;
            this.JavaArgumentsCheckBox.RootElement.AccessibleName = null;
            this.JavaArgumentsCheckBox.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
            this.JavaArgumentsCheckBox.RootElement.AngleTransform = 0F;
            this.JavaArgumentsCheckBox.RootElement.FlipText = false;
            this.JavaArgumentsCheckBox.RootElement.Margin = new System.Windows.Forms.Padding(0);
            this.JavaArgumentsCheckBox.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
            this.JavaArgumentsCheckBox.Size = new System.Drawing.Size(81, 18);
            this.JavaArgumentsCheckBox.TabIndex = 4;
            this.JavaArgumentsCheckBox.Text = "Флаги JVM:";
            this.JavaArgumentsCheckBox.ThemeName = "VisualStudio2012Dark";
            this.JavaArgumentsCheckBox.ToggleStateChanged += new Telerik.WinControls.UI.StateChangedEventHandler(this.javaArgumentsCheckBox_ToggleStateChanged);
            ((Telerik.WinControls.UI.RadCheckBoxElement)(this.JavaArgumentsCheckBox.GetChildAt(0))).Text = "Флаги JVM:";
            ((Telerik.WinControls.Primitives.FillPrimitive)(this.JavaArgumentsCheckBox.GetChildAt(0).GetChildAt(0))).Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
            // 
            // radGroupBox2
            // 
            this.radGroupBox2.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox2.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.radGroupBox2.Controls.Add(this.VersionSelector);
            this.radGroupBox2.HeaderText = "Выбор версии";
            this.radGroupBox2.Location = new System.Drawing.Point(5, 164);
            this.radGroupBox2.Name = "radGroupBox2";
            // 
            // 
            // 
            this.radGroupBox2.RootElement.AccessibleDescription = null;
            this.radGroupBox2.RootElement.AccessibleName = null;
            this.radGroupBox2.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
            this.radGroupBox2.RootElement.AngleTransform = 0F;
            this.radGroupBox2.RootElement.FlipText = false;
            this.radGroupBox2.RootElement.Margin = new System.Windows.Forms.Padding(0);
            this.radGroupBox2.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
            this.radGroupBox2.Size = new System.Drawing.Size(330, 177);
            this.radGroupBox2.TabIndex = 6;
            this.radGroupBox2.Text = "Выбор версии";
            this.radGroupBox2.ThemeName = "VisualStudio2012Dark";
            // 
            // VersionSelector
            // 
            this.VersionSelector.Controls.Add(this.officialVersionsPage);
            this.VersionSelector.Controls.Add(this.modVersionsPage);
            this.VersionSelector.DefaultPage = this.officialVersionsPage;
            this.VersionSelector.Dock = System.Windows.Forms.DockStyle.Fill;
            this.VersionSelector.Location = new System.Drawing.Point(2, 18);
            this.VersionSelector.Name = "VersionSelector";
            this.VersionSelector.SelectedPage = this.officialVersionsPage;
            this.VersionSelector.Size = new System.Drawing.Size(326, 157);
            this.VersionSelector.TabIndex = 8;
            this.VersionSelector.ThemeName = "VisualStudio2012Dark";
            ((Telerik.WinControls.UI.RadPageViewStripElement)(this.VersionSelector.GetChildAt(0))).StripButtons = Telerik.WinControls.UI.StripViewButtons.None;
            ((Telerik.WinControls.UI.RadPageViewStripElement)(this.VersionSelector.GetChildAt(0))).ItemAlignment = Telerik.WinControls.UI.StripViewItemAlignment.Near;
            ((Telerik.WinControls.UI.RadPageViewStripElement)(this.VersionSelector.GetChildAt(0))).ItemFitMode = ((Telerik.WinControls.UI.StripViewItemFitMode)((Telerik.WinControls.UI.StripViewItemFitMode.Shrink | Telerik.WinControls.UI.StripViewItemFitMode.Fill)));
            ((Telerik.WinControls.UI.RadPageViewStripElement)(this.VersionSelector.GetChildAt(0))).ItemContentOrientation = Telerik.WinControls.UI.PageViewContentOrientation.Auto;
            // 
            // officialVersionsPage
            // 
            this.officialVersionsPage.Controls.Add(this.snapshotsCheckBox);
            this.officialVersionsPage.Controls.Add(this.otherCheckBox);
            this.officialVersionsPage.Controls.Add(this.betaCheckBox);
            this.officialVersionsPage.Controls.Add(this.versionsDropDownList);
            this.officialVersionsPage.Controls.Add(this.alphaCheckBox);
            this.officialVersionsPage.ItemSize = new System.Drawing.SizeF(145F, 24F);
            this.officialVersionsPage.Location = new System.Drawing.Point(5, 30);
            this.officialVersionsPage.Name = "officialVersionsPage";
            this.officialVersionsPage.Size = new System.Drawing.Size(316, 122);
            this.officialVersionsPage.Text = "Официальные";
            // 
            // snapshotsCheckBox
            // 
            this.snapshotsCheckBox.Location = new System.Drawing.Point(3, 3);
            this.snapshotsCheckBox.Name = "snapshotsCheckBox";
            // 
            // 
            // 
            this.snapshotsCheckBox.RootElement.AccessibleDescription = null;
            this.snapshotsCheckBox.RootElement.AccessibleName = null;
            this.snapshotsCheckBox.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
            this.snapshotsCheckBox.RootElement.AngleTransform = 0F;
            this.snapshotsCheckBox.RootElement.FlipText = false;
            this.snapshotsCheckBox.RootElement.Margin = new System.Windows.Forms.Padding(0);
            this.snapshotsCheckBox.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
            this.snapshotsCheckBox.Size = new System.Drawing.Size(304, 18);
            this.snapshotsCheckBox.TabIndex = 3;
            this.snapshotsCheckBox.Text = "Отображать экспериментальные сборки (\"snapshots\")";
            this.snapshotsCheckBox.ThemeName = "VisualStudio2012Dark";
            this.snapshotsCheckBox.ToggleStateChanged += new Telerik.WinControls.UI.StateChangedEventHandler(this.versionCheckBoxes_ToggleStateChanged);
            ((Telerik.WinControls.UI.RadCheckBoxElement)(this.snapshotsCheckBox.GetChildAt(0))).Text = "Отображать экспериментальные сборки (\"snapshots\")";
            ((Telerik.WinControls.Primitives.FillPrimitive)(this.snapshotsCheckBox.GetChildAt(0).GetChildAt(0))).Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
            // 
            // otherCheckBox
            // 
            this.otherCheckBox.Location = new System.Drawing.Point(3, 75);
            this.otherCheckBox.Name = "otherCheckBox";
            // 
            // 
            // 
            this.otherCheckBox.RootElement.AccessibleDescription = null;
            this.otherCheckBox.RootElement.AccessibleName = null;
            this.otherCheckBox.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
            this.otherCheckBox.RootElement.AngleTransform = 0F;
            this.otherCheckBox.RootElement.FlipText = false;
            this.otherCheckBox.RootElement.Margin = new System.Windows.Forms.Padding(0);
            this.otherCheckBox.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
            this.otherCheckBox.Size = new System.Drawing.Size(301, 18);
            this.otherCheckBox.TabIndex = 7;
            this.otherCheckBox.Text = "Отображать сторонние версии(Forge, LiteLoader, etc.)";
            this.otherCheckBox.ThemeName = "VisualStudio2012Dark";
            this.otherCheckBox.ToggleStateChanged += new Telerik.WinControls.UI.StateChangedEventHandler(this.versionCheckBoxes_ToggleStateChanged);
            ((Telerik.WinControls.UI.RadCheckBoxElement)(this.otherCheckBox.GetChildAt(0))).Text = "Отображать сторонние версии(Forge, LiteLoader, etc.)";
            ((Telerik.WinControls.Primitives.FillPrimitive)(this.otherCheckBox.GetChildAt(0).GetChildAt(0))).Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
            // 
            // betaCheckBox
            // 
            this.betaCheckBox.Location = new System.Drawing.Point(3, 27);
            this.betaCheckBox.Name = "betaCheckBox";
            // 
            // 
            // 
            this.betaCheckBox.RootElement.AccessibleDescription = null;
            this.betaCheckBox.RootElement.AccessibleName = null;
            this.betaCheckBox.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
            this.betaCheckBox.RootElement.AngleTransform = 0F;
            this.betaCheckBox.RootElement.FlipText = false;
            this.betaCheckBox.RootElement.Margin = new System.Windows.Forms.Padding(0);
            this.betaCheckBox.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
            this.betaCheckBox.Size = new System.Drawing.Size(261, 18);
            this.betaCheckBox.TabIndex = 4;
            this.betaCheckBox.Text = "Отображать старые \"Beta\" сборки(2010-2011)";
            this.betaCheckBox.ThemeName = "VisualStudio2012Dark";
            this.betaCheckBox.ToggleStateChanged += new Telerik.WinControls.UI.StateChangedEventHandler(this.versionCheckBoxes_ToggleStateChanged);
            ((Telerik.WinControls.UI.RadCheckBoxElement)(this.betaCheckBox.GetChildAt(0))).Text = "Отображать старые \"Beta\" сборки(2010-2011)";
            ((Telerik.WinControls.Primitives.FillPrimitive)(this.betaCheckBox.GetChildAt(0).GetChildAt(0))).Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
            // 
            // versionsDropDownList
            // 
            this.versionsDropDownList.AutoCompleteDisplayMember = null;
            this.versionsDropDownList.AutoCompleteValueMember = null;
            this.versionsDropDownList.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
            this.versionsDropDownList.Location = new System.Drawing.Point(3, 96);
            this.versionsDropDownList.Name = "versionsDropDownList";
            // 
            // 
            // 
            this.versionsDropDownList.RootElement.AccessibleDescription = null;
            this.versionsDropDownList.RootElement.AccessibleName = null;
            this.versionsDropDownList.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
            this.versionsDropDownList.RootElement.AngleTransform = 0F;
            this.versionsDropDownList.RootElement.FlipText = false;
            this.versionsDropDownList.RootElement.Margin = new System.Windows.Forms.Padding(0);
            this.versionsDropDownList.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
            this.versionsDropDownList.Size = new System.Drawing.Size(310, 24);
            this.versionsDropDownList.TabIndex = 6;
            this.versionsDropDownList.ThemeName = "VisualStudio2012Dark";
            // 
            // alphaCheckBox
            // 
            this.alphaCheckBox.Location = new System.Drawing.Point(3, 51);
            this.alphaCheckBox.Name = "alphaCheckBox";
            // 
            // 
            // 
            this.alphaCheckBox.RootElement.AccessibleDescription = null;
            this.alphaCheckBox.RootElement.AccessibleName = null;
            this.alphaCheckBox.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
            this.alphaCheckBox.RootElement.AngleTransform = 0F;
            this.alphaCheckBox.RootElement.FlipText = false;
            this.alphaCheckBox.RootElement.Margin = new System.Windows.Forms.Padding(0);
            this.alphaCheckBox.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
            this.alphaCheckBox.Size = new System.Drawing.Size(253, 18);
            this.alphaCheckBox.TabIndex = 5;
            this.alphaCheckBox.Text = "Отображать старые \"Alpha\" сборки(от 2010)";
            this.alphaCheckBox.ThemeName = "VisualStudio2012Dark";
            this.alphaCheckBox.ToggleStateChanged += new Telerik.WinControls.UI.StateChangedEventHandler(this.versionCheckBoxes_ToggleStateChanged);
            ((Telerik.WinControls.UI.RadCheckBoxElement)(this.alphaCheckBox.GetChildAt(0))).Text = "Отображать старые \"Alpha\" сборки(от 2010)";
            ((Telerik.WinControls.Primitives.FillPrimitive)(this.alphaCheckBox.GetChildAt(0).GetChildAt(0))).Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
            // 
            // modVersionsPage
            // 
            this.modVersionsPage.Controls.Add(this.combinedCheckBox);
            this.modVersionsPage.Controls.Add(this.forgeCheckBox);
            this.modVersionsPage.Controls.Add(this.liteCheckBox);
            this.modVersionsPage.Controls.Add(this.optifineCheckBox);
            this.modVersionsPage.Controls.Add(this.modVersionsDropDownList);
            this.modVersionsPage.ItemSize = new System.Drawing.SizeF(181F, 24F);
            this.modVersionsPage.Location = new System.Drawing.Point(5, 30);
            this.modVersionsPage.Name = "modVersionsPage";
            this.modVersionsPage.Size = new System.Drawing.Size(316, 122);
            this.modVersionsPage.Text = "Модифицированные";
            // 
            // combinedCheckBox
            // 
            this.combinedCheckBox.Location = new System.Drawing.Point(3, 75);
            this.combinedCheckBox.Name = "combinedCheckBox";
            // 
            // 
            // 
            this.combinedCheckBox.RootElement.AccessibleDescription = null;
            this.combinedCheckBox.RootElement.AccessibleName = null;
            this.combinedCheckBox.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
            this.combinedCheckBox.RootElement.AngleTransform = 0F;
            this.combinedCheckBox.RootElement.FlipText = false;
            this.combinedCheckBox.RootElement.Margin = new System.Windows.Forms.Padding(0);
            this.combinedCheckBox.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
            this.combinedCheckBox.Size = new System.Drawing.Size(229, 18);
            this.combinedCheckBox.TabIndex = 13;
            this.combinedCheckBox.Text = "Отображать комбинированные сборки";
            this.combinedCheckBox.ThemeName = "VisualStudio2012Dark";
            ((Telerik.WinControls.UI.RadCheckBoxElement)(this.combinedCheckBox.GetChildAt(0))).Text = "Отображать комбинированные сборки";
            ((Telerik.WinControls.Primitives.FillPrimitive)(this.combinedCheckBox.GetChildAt(0).GetChildAt(0))).Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
            // 
            // forgeCheckBox
            // 
            this.forgeCheckBox.Location = new System.Drawing.Point(3, 3);
            this.forgeCheckBox.Name = "forgeCheckBox";
            // 
            // 
            // 
            this.forgeCheckBox.RootElement.AccessibleDescription = null;
            this.forgeCheckBox.RootElement.AccessibleName = null;
            this.forgeCheckBox.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
            this.forgeCheckBox.RootElement.AngleTransform = 0F;
            this.forgeCheckBox.RootElement.FlipText = false;
            this.forgeCheckBox.RootElement.Margin = new System.Windows.Forms.Padding(0);
            this.forgeCheckBox.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
            this.forgeCheckBox.Size = new System.Drawing.Size(218, 18);
            this.forgeCheckBox.TabIndex = 10;
            this.forgeCheckBox.Text = "Отображать сборки с Minecraft Forge";
            this.forgeCheckBox.ThemeName = "VisualStudio2012Dark";
            ((Telerik.WinControls.UI.RadCheckBoxElement)(this.forgeCheckBox.GetChildAt(0))).Text = "Отображать сборки с Minecraft Forge";
            ((Telerik.WinControls.Primitives.FillPrimitive)(this.forgeCheckBox.GetChildAt(0).GetChildAt(0))).Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
            // 
            // liteCheckBox
            // 
            this.liteCheckBox.Location = new System.Drawing.Point(3, 27);
            this.liteCheckBox.Name = "liteCheckBox";
            // 
            // 
            // 
            this.liteCheckBox.RootElement.AccessibleDescription = null;
            this.liteCheckBox.RootElement.AccessibleName = null;
            this.liteCheckBox.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
            this.liteCheckBox.RootElement.AngleTransform = 0F;
            this.liteCheckBox.RootElement.FlipText = false;
            this.liteCheckBox.RootElement.Margin = new System.Windows.Forms.Padding(0);
            this.liteCheckBox.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
            this.liteCheckBox.Size = new System.Drawing.Size(191, 18);
            this.liteCheckBox.TabIndex = 11;
            this.liteCheckBox.Text = "Отображать сборки с LiteLoader";
            this.liteCheckBox.ThemeName = "VisualStudio2012Dark";
            ((Telerik.WinControls.UI.RadCheckBoxElement)(this.liteCheckBox.GetChildAt(0))).Text = "Отображать сборки с LiteLoader";
            ((Telerik.WinControls.Primitives.FillPrimitive)(this.liteCheckBox.GetChildAt(0).GetChildAt(0))).Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
            // 
            // optifineCheckBox
            // 
            this.optifineCheckBox.Location = new System.Drawing.Point(3, 51);
            this.optifineCheckBox.Name = "optifineCheckBox";
            // 
            // 
            // 
            this.optifineCheckBox.RootElement.AccessibleDescription = null;
            this.optifineCheckBox.RootElement.AccessibleName = null;
            this.optifineCheckBox.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
            this.optifineCheckBox.RootElement.AngleTransform = 0F;
            this.optifineCheckBox.RootElement.FlipText = false;
            this.optifineCheckBox.RootElement.Margin = new System.Windows.Forms.Padding(0);
            this.optifineCheckBox.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
            this.optifineCheckBox.Size = new System.Drawing.Size(179, 18);
            this.optifineCheckBox.TabIndex = 12;
            this.optifineCheckBox.Text = "Отображать сборки с Optifine";
            this.optifineCheckBox.ThemeName = "VisualStudio2012Dark";
            ((Telerik.WinControls.UI.RadCheckBoxElement)(this.optifineCheckBox.GetChildAt(0))).Text = "Отображать сборки с Optifine";
            ((Telerik.WinControls.Primitives.FillPrimitive)(this.optifineCheckBox.GetChildAt(0).GetChildAt(0))).Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
            // 
            // modVersionsDropDownList
            // 
            this.modVersionsDropDownList.AutoCompleteDisplayMember = null;
            this.modVersionsDropDownList.AutoCompleteValueMember = null;
            this.modVersionsDropDownList.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
            this.modVersionsDropDownList.Location = new System.Drawing.Point(3, 96);
            this.modVersionsDropDownList.Name = "modVersionsDropDownList";
            // 
            // 
            // 
            this.modVersionsDropDownList.RootElement.AccessibleDescription = null;
            this.modVersionsDropDownList.RootElement.AccessibleName = null;
            this.modVersionsDropDownList.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
            this.modVersionsDropDownList.RootElement.AngleTransform = 0F;
            this.modVersionsDropDownList.RootElement.FlipText = false;
            this.modVersionsDropDownList.RootElement.Margin = new System.Windows.Forms.Padding(0);
            this.modVersionsDropDownList.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
            this.modVersionsDropDownList.Size = new System.Drawing.Size(310, 24);
            this.modVersionsDropDownList.TabIndex = 8;
            this.modVersionsDropDownList.ThemeName = "VisualStudio2012Dark";
            // 
            // radGroupBox1
            // 
            this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox1.Controls.Add(this.radButton1);
            this.radGroupBox1.Controls.Add(this.portTextBox);
            this.radGroupBox1.Controls.Add(this.ipTextBox);
            this.radGroupBox1.Controls.Add(this.FastConnectCheckBox);
            this.radGroupBox1.Controls.Add(this.ActionAfterLaunchLabel);
            this.radGroupBox1.Controls.Add(this.radLabel3);
            this.radGroupBox1.Controls.Add(this.yResolutionBox);
            this.radGroupBox1.Controls.Add(this.xResolutionBox);
            this.radGroupBox1.Controls.Add(this.WindowResolutionLabel);
            this.radGroupBox1.Controls.Add(this.stateBox);
            this.radGroupBox1.Controls.Add(this.gameDirectoryBox);
            this.radGroupBox1.Controls.Add(this.GameDirectoryCheckBox);
            this.radGroupBox1.Controls.Add(this.ProfileNameLabel);
            this.radGroupBox1.Controls.Add(this.nameBox);
            this.radGroupBox1.HeaderText = "Основные настройки профиля";
            this.radGroupBox1.Location = new System.Drawing.Point(5, 2);
            this.radGroupBox1.Name = "radGroupBox1";
            // 
            // 
            // 
            this.radGroupBox1.RootElement.AccessibleDescription = null;
            this.radGroupBox1.RootElement.AccessibleName = null;
            this.radGroupBox1.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
            this.radGroupBox1.RootElement.AngleTransform = 0F;
            this.radGroupBox1.RootElement.FlipText = false;
            this.radGroupBox1.RootElement.Margin = new System.Windows.Forms.Padding(0);
            this.radGroupBox1.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
            this.radGroupBox1.Size = new System.Drawing.Size(330, 156);
            this.radGroupBox1.TabIndex = 5;
            this.radGroupBox1.Text = "Основные настройки профиля";
            this.radGroupBox1.ThemeName = "VisualStudio2012Dark";
            // 
            // radButton1
            // 
            this.radButton1.Location = new System.Drawing.Point(280, 72);
            this.radButton1.Name = "radButton1";
            this.radButton1.Size = new System.Drawing.Size(42, 20);
            this.radButton1.TabIndex = 13;
            this.radButton1.Text = "...";
            this.radButton1.ThemeName = "VisualStudio2012Dark";
            // 
            // portTextBox
            // 
            this.portTextBox.Enabled = false;
            this.portTextBox.Location = new System.Drawing.Point(280, 124);
            this.portTextBox.Name = "portTextBox";
            this.portTextBox.NullText = "Порт";
            // 
            // 
            // 
            this.portTextBox.RootElement.AccessibleDescription = null;
            this.portTextBox.RootElement.AccessibleName = null;
            this.portTextBox.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
            this.portTextBox.RootElement.AngleTransform = 0F;
            this.portTextBox.RootElement.FlipText = false;
            this.portTextBox.RootElement.Margin = new System.Windows.Forms.Padding(0);
            this.portTextBox.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
            this.portTextBox.Size = new System.Drawing.Size(42, 21);
            this.portTextBox.TabIndex = 12;
            this.portTextBox.ThemeName = "VisualStudio2012Dark";
            // 
            // ipTextBox
            // 
            this.ipTextBox.Enabled = false;
            this.ipTextBox.Location = new System.Drawing.Point(145, 124);
            this.ipTextBox.Name = "ipTextBox";
            this.ipTextBox.NullText = "IP";
            // 
            // 
            // 
            this.ipTextBox.RootElement.AccessibleDescription = null;
            this.ipTextBox.RootElement.AccessibleName = null;
            this.ipTextBox.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
            this.ipTextBox.RootElement.AngleTransform = 0F;
            this.ipTextBox.RootElement.FlipText = false;
            this.ipTextBox.RootElement.Margin = new System.Windows.Forms.Padding(0);
            this.ipTextBox.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
            this.ipTextBox.Size = new System.Drawing.Size(129, 21);
            this.ipTextBox.TabIndex = 11;
            this.ipTextBox.ThemeName = "VisualStudio2012Dark";
            // 
            // FastConnectCheckBox
            // 
            this.FastConnectCheckBox.Location = new System.Drawing.Point(3, 127);
            this.FastConnectCheckBox.Name = "FastConnectCheckBox";
            // 
            // 
            // 
            this.FastConnectCheckBox.RootElement.AccessibleDescription = null;
            this.FastConnectCheckBox.RootElement.AccessibleName = null;
            this.FastConnectCheckBox.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
            this.FastConnectCheckBox.RootElement.AngleTransform = 0F;
            this.FastConnectCheckBox.RootElement.FlipText = false;
            this.FastConnectCheckBox.RootElement.Margin = new System.Windows.Forms.Padding(0);
            this.FastConnectCheckBox.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
            this.FastConnectCheckBox.Size = new System.Drawing.Size(122, 18);
            this.FastConnectCheckBox.TabIndex = 10;
            this.FastConnectCheckBox.Text = "Автоподключение:";
            this.FastConnectCheckBox.ThemeName = "VisualStudio2012Dark";
            this.FastConnectCheckBox.ToggleStateChanged += new Telerik.WinControls.UI.StateChangedEventHandler(this.fastConnectCheckBox_ToggleStateChanged);
            ((Telerik.WinControls.UI.RadCheckBoxElement)(this.FastConnectCheckBox.GetChildAt(0))).Text = "Автоподключение:";
            ((Telerik.WinControls.Primitives.FillPrimitive)(this.FastConnectCheckBox.GetChildAt(0).GetChildAt(0))).Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
            // 
            // ActionAfterLaunchLabel
            // 
            this.ActionAfterLaunchLabel.BackColor = System.Drawing.Color.Transparent;
            this.ActionAfterLaunchLabel.Location = new System.Drawing.Point(1, 98);
            this.ActionAfterLaunchLabel.Name = "ActionAfterLaunchLabel";
            // 
            // 
            // 
            this.ActionAfterLaunchLabel.RootElement.AccessibleDescription = null;
            this.ActionAfterLaunchLabel.RootElement.AccessibleName = null;
            this.ActionAfterLaunchLabel.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
            this.ActionAfterLaunchLabel.RootElement.AngleTransform = 0F;
            this.ActionAfterLaunchLabel.RootElement.FlipText = false;
            this.ActionAfterLaunchLabel.RootElement.Margin = new System.Windows.Forms.Padding(0);
            this.ActionAfterLaunchLabel.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
            this.ActionAfterLaunchLabel.Size = new System.Drawing.Size(134, 18);
            this.ActionAfterLaunchLabel.TabIndex = 9;
            this.ActionAfterLaunchLabel.Text = "После запуска Minecraft:";
            this.ActionAfterLaunchLabel.ThemeName = "VisualStudio2012Dark";
            ((Telerik.WinControls.UI.RadLabelElement)(this.ActionAfterLaunchLabel.GetChildAt(0))).Text = "После запуска Minecraft:";
            ((Telerik.WinControls.Primitives.FillPrimitive)(this.ActionAfterLaunchLabel.GetChildAt(0).GetChildAt(0))).Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
            // 
            // radLabel3
            // 
            this.radLabel3.BackColor = System.Drawing.Color.Transparent;
            this.radLabel3.Location = new System.Drawing.Point(203, 73);
            this.radLabel3.Name = "radLabel3";
            // 
            // 
            // 
            this.radLabel3.RootElement.AccessibleDescription = null;
            this.radLabel3.RootElement.AccessibleName = null;
            this.radLabel3.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
            this.radLabel3.RootElement.AngleTransform = 0F;
            this.radLabel3.RootElement.FlipText = false;
            this.radLabel3.RootElement.Margin = new System.Windows.Forms.Padding(0);
            this.radLabel3.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
            this.radLabel3.Size = new System.Drawing.Size(13, 18);
            this.radLabel3.TabIndex = 8;
            this.radLabel3.Text = "Х";
            this.radLabel3.ThemeName = "VisualStudio2012Dark";
            ((Telerik.WinControls.UI.RadLabelElement)(this.radLabel3.GetChildAt(0))).Text = "Х";
            ((Telerik.WinControls.Primitives.FillPrimitive)(this.radLabel3.GetChildAt(0).GetChildAt(0))).Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
            // 
            // yResolutionBox
            // 
            this.yResolutionBox.Location = new System.Drawing.Point(222, 72);
            this.yResolutionBox.Name = "yResolutionBox";
            // 
            // 
            // 
            this.yResolutionBox.RootElement.AccessibleDescription = null;
            this.yResolutionBox.RootElement.AccessibleName = null;
            this.yResolutionBox.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
            this.yResolutionBox.RootElement.AngleTransform = 0F;
            this.yResolutionBox.RootElement.FlipText = false;
            this.yResolutionBox.RootElement.Margin = new System.Windows.Forms.Padding(0);
            this.yResolutionBox.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
            this.yResolutionBox.Size = new System.Drawing.Size(52, 21);
            this.yResolutionBox.TabIndex = 7;
            this.yResolutionBox.Text = "480";
            this.yResolutionBox.ThemeName = "VisualStudio2012Dark";
            // 
            // xResolutionBox
            // 
            this.xResolutionBox.Location = new System.Drawing.Point(145, 72);
            this.xResolutionBox.Name = "xResolutionBox";
            // 
            // 
            // 
            this.xResolutionBox.RootElement.AccessibleDescription = null;
            this.xResolutionBox.RootElement.AccessibleName = null;
            this.xResolutionBox.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
            this.xResolutionBox.RootElement.AngleTransform = 0F;
            this.xResolutionBox.RootElement.FlipText = false;
            this.xResolutionBox.RootElement.Margin = new System.Windows.Forms.Padding(0);
            this.xResolutionBox.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
            this.xResolutionBox.Size = new System.Drawing.Size(52, 21);
            this.xResolutionBox.TabIndex = 6;
            this.xResolutionBox.Text = "854";
            this.xResolutionBox.ThemeName = "VisualStudio2012Dark";
            // 
            // WindowResolutionLabel
            // 
            this.WindowResolutionLabel.BackColor = System.Drawing.Color.Transparent;
            this.WindowResolutionLabel.Location = new System.Drawing.Point(1, 73);
            this.WindowResolutionLabel.Name = "WindowResolutionLabel";
            // 
            // 
            // 
            this.WindowResolutionLabel.RootElement.AccessibleDescription = null;
            this.WindowResolutionLabel.RootElement.AccessibleName = null;
            this.WindowResolutionLabel.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
            this.WindowResolutionLabel.RootElement.AngleTransform = 0F;
            this.WindowResolutionLabel.RootElement.FlipText = false;
            this.WindowResolutionLabel.RootElement.Margin = new System.Windows.Forms.Padding(0);
            this.WindowResolutionLabel.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
            this.WindowResolutionLabel.Size = new System.Drawing.Size(85, 18);
            this.WindowResolutionLabel.TabIndex = 5;
            this.WindowResolutionLabel.Text = "Размер экрана:";
            this.WindowResolutionLabel.ThemeName = "VisualStudio2012Dark";
            ((Telerik.WinControls.UI.RadLabelElement)(this.WindowResolutionLabel.GetChildAt(0))).Text = "Размер экрана:";
            ((Telerik.WinControls.Primitives.FillPrimitive)(this.WindowResolutionLabel.GetChildAt(0).GetChildAt(0))).Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
            // 
            // stateBox
            // 
            this.stateBox.AutoCompleteDisplayMember = null;
            this.stateBox.AutoCompleteValueMember = null;
            this.stateBox.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
            radListDataItem1.Tag = "keep the launcher open";
            radListDataItem1.Text = "Оставить лаунчер открытым";
            radListDataItem2.Tag = "hide launcher and re-open when game closes";
            radListDataItem2.Text = "Скрыть лаунчер";
            radListDataItem3.Tag = "close launcher when game starts";
            radListDataItem3.Text = "Закрыть лаунчер";
            this.stateBox.Items.Add(radListDataItem1);
            this.stateBox.Items.Add(radListDataItem2);
            this.stateBox.Items.Add(radListDataItem3);
            this.stateBox.Location = new System.Drawing.Point(145, 98);
            this.stateBox.Name = "stateBox";
            // 
            // 
            // 
            this.stateBox.RootElement.AccessibleDescription = null;
            this.stateBox.RootElement.AccessibleName = null;
            this.stateBox.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
            this.stateBox.RootElement.AngleTransform = 0F;
            this.stateBox.RootElement.FlipText = false;
            this.stateBox.RootElement.Margin = new System.Windows.Forms.Padding(0);
            this.stateBox.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
            this.stateBox.Size = new System.Drawing.Size(177, 24);
            this.stateBox.TabIndex = 4;
            this.stateBox.ThemeName = "VisualStudio2012Dark";
            // 
            // gameDirectoryBox
            // 
            this.gameDirectoryBox.Enabled = false;
            this.gameDirectoryBox.Location = new System.Drawing.Point(145, 46);
            this.gameDirectoryBox.Name = "gameDirectoryBox";
            // 
            // 
            // 
            this.gameDirectoryBox.RootElement.AccessibleDescription = null;
            this.gameDirectoryBox.RootElement.AccessibleName = null;
            this.gameDirectoryBox.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
            this.gameDirectoryBox.RootElement.AngleTransform = 0F;
            this.gameDirectoryBox.RootElement.FlipText = false;
            this.gameDirectoryBox.RootElement.Margin = new System.Windows.Forms.Padding(0);
            this.gameDirectoryBox.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
            this.gameDirectoryBox.Size = new System.Drawing.Size(177, 21);
            this.gameDirectoryBox.TabIndex = 3;
            this.gameDirectoryBox.ThemeName = "VisualStudio2012Dark";
            // 
            // GameDirectoryCheckBox
            // 
            this.GameDirectoryCheckBox.Location = new System.Drawing.Point(3, 47);
            this.GameDirectoryCheckBox.Name = "GameDirectoryCheckBox";
            // 
            // 
            // 
            this.GameDirectoryCheckBox.RootElement.AccessibleDescription = null;
            this.GameDirectoryCheckBox.RootElement.AccessibleName = null;
            this.GameDirectoryCheckBox.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
            this.GameDirectoryCheckBox.RootElement.AngleTransform = 0F;
            this.GameDirectoryCheckBox.RootElement.FlipText = false;
            this.GameDirectoryCheckBox.RootElement.Margin = new System.Windows.Forms.Padding(0);
            this.GameDirectoryCheckBox.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
            this.GameDirectoryCheckBox.Size = new System.Drawing.Size(133, 18);
            this.GameDirectoryCheckBox.TabIndex = 2;
            this.GameDirectoryCheckBox.Text = "Рабочая директория:";
            this.GameDirectoryCheckBox.ThemeName = "VisualStudio2012Dark";
            this.GameDirectoryCheckBox.ToggleStateChanged += new Telerik.WinControls.UI.StateChangedEventHandler(this.gameDirectoryCheckBox_ToggleStateChanged);
            ((Telerik.WinControls.UI.RadCheckBoxElement)(this.GameDirectoryCheckBox.GetChildAt(0))).Text = "Рабочая директория:";
            ((Telerik.WinControls.Primitives.FillPrimitive)(this.GameDirectoryCheckBox.GetChildAt(0).GetChildAt(0))).Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
            // 
            // ProfileNameLabel
            // 
            this.ProfileNameLabel.BackColor = System.Drawing.Color.Transparent;
            this.ProfileNameLabel.Location = new System.Drawing.Point(1, 21);
            this.ProfileNameLabel.Name = "ProfileNameLabel";
            // 
            // 
            // 
            this.ProfileNameLabel.RootElement.AccessibleDescription = null;
            this.ProfileNameLabel.RootElement.AccessibleName = null;
            this.ProfileNameLabel.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
            this.ProfileNameLabel.RootElement.AngleTransform = 0F;
            this.ProfileNameLabel.RootElement.FlipText = false;
            this.ProfileNameLabel.RootElement.Margin = new System.Windows.Forms.Padding(0);
            this.ProfileNameLabel.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
            this.ProfileNameLabel.Size = new System.Drawing.Size(107, 18);
            this.ProfileNameLabel.TabIndex = 1;
            this.ProfileNameLabel.Text = "Название профиля:";
            this.ProfileNameLabel.ThemeName = "VisualStudio2012Dark";
            ((Telerik.WinControls.UI.RadLabelElement)(this.ProfileNameLabel.GetChildAt(0))).Text = "Название профиля:";
            ((Telerik.WinControls.Primitives.FillPrimitive)(this.ProfileNameLabel.GetChildAt(0).GetChildAt(0))).Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
            // 
            // nameBox
            // 
            this.nameBox.Location = new System.Drawing.Point(145, 20);
            this.nameBox.Name = "nameBox";
            // 
            // 
            // 
            this.nameBox.RootElement.AccessibleDescription = null;
            this.nameBox.RootElement.AccessibleName = null;
            this.nameBox.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
            this.nameBox.RootElement.AngleTransform = 0F;
            this.nameBox.RootElement.FlipText = false;
            this.nameBox.RootElement.Margin = new System.Windows.Forms.Padding(0);
            this.nameBox.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
            this.nameBox.Size = new System.Drawing.Size(177, 21);
            this.nameBox.TabIndex = 0;
            this.nameBox.ThemeName = "VisualStudio2012Dark";
            // 
            // cancelButton
            // 
            this.cancelButton.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
            this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.cancelButton.Location = new System.Drawing.Point(5, 432);
            this.cancelButton.Name = "cancelButton";
            this.cancelButton.Size = new System.Drawing.Size(86, 34);
            this.cancelButton.TabIndex = 8;
            this.cancelButton.Text = "Отмена";
            this.cancelButton.ThemeName = "VisualStudio2012Dark";
            // 
            // openGameDirectoryButton
            // 
            this.openGameDirectoryButton.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
            this.openGameDirectoryButton.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.openGameDirectoryButton.Location = new System.Drawing.Point(101, 432);
            this.openGameDirectoryButton.Name = "openGameDirectoryButton";
            // 
            // 
            // 
            this.openGameDirectoryButton.RootElement.AccessibleDescription = null;
            this.openGameDirectoryButton.RootElement.AccessibleName = null;
            this.openGameDirectoryButton.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
            this.openGameDirectoryButton.RootElement.AngleTransform = 0F;
            this.openGameDirectoryButton.RootElement.FlipText = false;
            this.openGameDirectoryButton.RootElement.Margin = new System.Windows.Forms.Padding(0);
            this.openGameDirectoryButton.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
            this.openGameDirectoryButton.Size = new System.Drawing.Size(111, 34);
            this.openGameDirectoryButton.TabIndex = 10;
            this.openGameDirectoryButton.Text = "Открыть раб. директорию";
            this.openGameDirectoryButton.TextWrap = true;
            this.openGameDirectoryButton.ThemeName = "VisualStudio2012Dark";
            this.openGameDirectoryButton.Click += new System.EventHandler(this.openGameDirectoryButton_Click);
            // 
            // saveProfileButton
            // 
            this.saveProfileButton.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
            this.saveProfileButton.DialogResult = System.Windows.Forms.DialogResult.OK;
            this.saveProfileButton.Location = new System.Drawing.Point(218, 432);
            this.saveProfileButton.Name = "saveProfileButton";
            // 
            // 
            // 
            this.saveProfileButton.RootElement.AccessibleDescription = null;
            this.saveProfileButton.RootElement.AccessibleName = null;
            this.saveProfileButton.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
            this.saveProfileButton.RootElement.AngleTransform = 0F;
            this.saveProfileButton.RootElement.FlipText = false;
            this.saveProfileButton.RootElement.Margin = new System.Windows.Forms.Padding(0);
            this.saveProfileButton.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
            this.saveProfileButton.Size = new System.Drawing.Size(117, 34);
            this.saveProfileButton.TabIndex = 9;
            this.saveProfileButton.Text = "Сохранить профиль";
            this.saveProfileButton.ThemeName = "VisualStudio2012Dark";
            this.saveProfileButton.Click += new System.EventHandler(this.saveProfileButton_Click);
            // 
            // ProfileForm
            // 
            this.AcceptButton = this.saveProfileButton;
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.CancelButton = this.cancelButton;
            this.ClientSize = new System.Drawing.Size(341, 468);
            this.Controls.Add(this.openGameDirectoryButton);
            this.Controls.Add(this.saveProfileButton);
            this.Controls.Add(this.cancelButton);
            this.Controls.Add(this.radGroupBox3);
            this.Controls.Add(this.radGroupBox2);
            this.Controls.Add(this.radGroupBox1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "ProfileForm";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.ShowIcon = false;
            this.Text = "ProfileForm";
            this.ThemeName = "VisualStudio2012Dark";
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox3)).EndInit();
            this.radGroupBox3.ResumeLayout(false);
            this.radGroupBox3.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.javaExecutableBox)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.JavaExecutableCheckBox)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.javaArgumentsBox)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.JavaArgumentsCheckBox)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).EndInit();
            this.radGroupBox2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.VersionSelector)).EndInit();
            this.VersionSelector.ResumeLayout(false);
            this.officialVersionsPage.ResumeLayout(false);
            this.officialVersionsPage.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.snapshotsCheckBox)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.otherCheckBox)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.betaCheckBox)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.versionsDropDownList)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.alphaCheckBox)).EndInit();
            this.modVersionsPage.ResumeLayout(false);
            this.modVersionsPage.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.combinedCheckBox)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.forgeCheckBox)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.liteCheckBox)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.optifineCheckBox)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.modVersionsDropDownList)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
            this.radGroupBox1.ResumeLayout(false);
            this.radGroupBox1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radButton1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.portTextBox)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ipTextBox)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.FastConnectCheckBox)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ActionAfterLaunchLabel)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.yResolutionBox)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xResolutionBox)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.WindowResolutionLabel)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.stateBox)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gameDirectoryBox)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.GameDirectoryCheckBox)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ProfileNameLabel)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.nameBox)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cancelButton)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.openGameDirectoryButton)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.saveProfileButton)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
            this.ResumeLayout(false);

        }
        private void addDefaultControlsInformationWhenAddingNew()
        {
            Telerik.WinControls.UI.RadListDataItem radListDataItem4 = new Telerik.WinControls.UI.RadListDataItem();
            Telerik.WinControls.UI.RadListDataItem radListDataItem5 = new Telerik.WinControls.UI.RadListDataItem();
            Telerik.WinControls.UI.RadListDataItem radListDataItem6 = new Telerik.WinControls.UI.RadListDataItem();
            radListDataItem4.Text = "1 час";
            radListDataItem4.Value = 1;
            radListDataItem4.TextWrap = true;
            radListDataItem5.Text = "2 часа";
            radListDataItem5.Value = 2;
            radListDataItem5.TextWrap = true;
            radListDataItem6.Text = "без значение";
            radListDataItem6.Value = 3;
            radListDataItem6.TextWrap = true;
            this.dropDownListLessonLenght.Items.Add(radListDataItem4);
            this.dropDownListLessonLenght.Items.Add(radListDataItem5);
            this.dropDownListLessonLenght.Items.Add(radListDataItem6);

            foreach (Teacher t in mDBManager.Teachers)
            {
                RadListDataItem listDataItem = new RadListDataItem();
                listDataItem.Text = t.Name;
                listDataItem.Value = t.ID;

                dropDownListTeachers.Items.Add(listDataItem);
            }

            foreach (Subject s in mDBManager.Subjects)
            {
                RadListDataItem listDataItem = new RadListDataItem();
                listDataItem.Text = s.Name;
                listDataItem.Value = s.ID;

                dropDownListSubjects.Items.Add(listDataItem);
            }

            foreach (Class c in mDBManager.Classes)
            {
                RadListDataItem listDataItem = new RadListDataItem();
                listDataItem.Text = c.Name;
                listDataItem.Value = c.ID;

                dropDownListClasses.Items.Add(listDataItem);
            }

            foreach (Classroom c in mDBManager.Classrooms)
            {
                RadListDataItem listDataItem = new RadListDataItem();
                listDataItem.Text = c.Name;
                listDataItem.Value = c.ID;

                dropDownListWantedRoom.Items.Add(listDataItem);
            }
        }