Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/26/10 16:31:47 (15 years ago)
Author:
mkommend
Message:

corrected layouting issues in netron (ticket #867)

Location:
trunk/sources/HeuristicLab.Core.Views/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core.Views/3.3/HeuristicLab.Core.Views-3.3.csproj

    r2845 r2875  
    5151    <ErrorReport>prompt</ErrorReport>
    5252  </PropertyGroup>
     53  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     54    <DebugSymbols>true</DebugSymbols>
     55    <OutputPath>bin\x86\Debug\</OutputPath>
     56    <DefineConstants>DEBUG;TRACE</DefineConstants>
     57    <DebugType>full</DebugType>
     58    <PlatformTarget>x86</PlatformTarget>
     59    <ErrorReport>prompt</ErrorReport>
     60  </PropertyGroup>
     61  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     62    <OutputPath>bin\x86\Release\</OutputPath>
     63    <DefineConstants>TRACE</DefineConstants>
     64    <DocumentationFile>bin\Release\HeuristicLab.Core.Views-3.3.XML</DocumentationFile>
     65    <Optimize>true</Optimize>
     66    <DebugType>pdbonly</DebugType>
     67    <PlatformTarget>x86</PlatformTarget>
     68    <ErrorReport>prompt</ErrorReport>
     69  </PropertyGroup>
    5370  <ItemGroup>
    5471    <Reference Include="System" />
  • trunk/sources/HeuristicLab.Core.Views/3.3/ItemCollectionView.cs

    r2870 r2875  
    4343      InitializeComponent();
    4444      Caption = "Item Collection";
     45      this.Resize += new EventHandler(ItemCollectionView_Resize);
     46      this.splitContainer.Resize += new EventHandler(splitContainer_Resize);
     47      this.splitContainer.Panel1.Resize += new EventHandler(Panel1_Resize);
     48      this.splitContainer.Panel2.Resize += new EventHandler(Panel2_Resize);
     49
     50      this.detailsGroupBox.Resize += new EventHandler(detailsGroupBox_Resize);
     51      this.itemsGroupBox.Resize += new EventHandler(itemsGroupBox_Resize);
     52      this.itemsListView.Resize += new EventHandler(itemsListView_Resize);
     53    }
     54
     55    void Panel1_Resize(object sender, EventArgs e) {
     56     // MessageBox.Show("split.panel1 resized");
     57    }
     58
     59    void Panel2_Resize(object sender, EventArgs e) {
     60     // MessageBox.Show("split.panel2 resized");
     61    }
     62
     63    void itemsListView_Resize(object sender, EventArgs e) {
     64      //MessageBox.Show("itemslistview resized");
     65    }
     66
     67    void itemsGroupBox_Resize(object sender, EventArgs e) {
     68     // MessageBox.Show("items groupbox resized");
     69    }
     70
     71    void detailsGroupBox_Resize(object sender, EventArgs e) {
     72   //   MessageBox.Show("details groupbox resized");
     73    }
     74
     75    void splitContainer_Resize(object sender, EventArgs e) {
     76      //MessageBox.Show("split container resized");
     77     
     78    }
     79
     80    void ItemCollectionView_Resize(object sender, EventArgs e) {
     81   //   MessageBox.Show("control resized");
     82      this.splitContainer.SplitterDistance = this.splitContainer.SplitterDistance + 1;
    4583    }
    4684    public ItemCollectionView(IObservableCollection<T> content)
Note: See TracChangeset for help on using the changeset viewer.