Changeset 2875 for trunk/sources/HeuristicLab.Core.Views/3.3
- Timestamp:
- 02/26/10 16:31:47 (15 years ago)
- 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 51 51 <ErrorReport>prompt</ErrorReport> 52 52 </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> 53 70 <ItemGroup> 54 71 <Reference Include="System" /> -
trunk/sources/HeuristicLab.Core.Views/3.3/ItemCollectionView.cs
r2870 r2875 43 43 InitializeComponent(); 44 44 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; 45 83 } 46 84 public ItemCollectionView(IObservableCollection<T> content)
Note: See TracChangeset
for help on using the changeset viewer.