# HG changeset patch # User Steven Hollidge # Date 1333728815 -3600 # Node ID 8e64582705991e4ce4330454003e416e551f030b # Parent 274fd2386d55863282abccf6765067a80ff91863 Initial load diff -r 274fd2386d55 -r 8e6458270599 WrappingListbox/WrappingListbox.sln --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/WrappingListbox/WrappingListbox.sln Fri Apr 06 17:13:35 2012 +0100 @@ -0,0 +1,20 @@ + +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual Studio 2010 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WrappingListbox", "WrappingListbox\WrappingListbox.csproj", "{8453E737-9656-4724-BD08-FAA1A4CD6D95}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x86 = Debug|x86 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {8453E737-9656-4724-BD08-FAA1A4CD6D95}.Debug|x86.ActiveCfg = Debug|x86 + {8453E737-9656-4724-BD08-FAA1A4CD6D95}.Debug|x86.Build.0 = Debug|x86 + {8453E737-9656-4724-BD08-FAA1A4CD6D95}.Release|x86.ActiveCfg = Release|x86 + {8453E737-9656-4724-BD08-FAA1A4CD6D95}.Release|x86.Build.0 = Release|x86 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff -r 274fd2386d55 -r 8e6458270599 WrappingListbox/WrappingListbox/App.xaml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/WrappingListbox/WrappingListbox/App.xaml Fri Apr 06 17:13:35 2012 +0100 @@ -0,0 +1,8 @@ + + + + + diff -r 274fd2386d55 -r 8e6458270599 WrappingListbox/WrappingListbox/App.xaml.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/WrappingListbox/WrappingListbox/App.xaml.cs Fri Apr 06 17:13:35 2012 +0100 @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Windows; + +namespace WrappingListbox +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff -r 274fd2386d55 -r 8e6458270599 WrappingListbox/WrappingListbox/ICON.ico Binary file WrappingListbox/WrappingListbox/ICON.ico has changed diff -r 274fd2386d55 -r 8e6458270599 WrappingListbox/WrappingListbox/MainWindow.xaml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/WrappingListbox/WrappingListbox/MainWindow.xaml Fri Apr 06 17:13:35 2012 +0100 @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 274fd2386d55 -r 8e6458270599 WrappingListbox/WrappingListbox/MainWindow.xaml.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/WrappingListbox/WrappingListbox/MainWindow.xaml.cs Fri Apr 06 17:13:35 2012 +0100 @@ -0,0 +1,13 @@ +using System.Linq; + +namespace WrappingListbox +{ + public partial class MainWindow + { + public MainWindow() + { + InitializeComponent(); + listbox1.ItemsSource = Enumerable.Range(1, 100); + } + } +} \ No newline at end of file diff -r 274fd2386d55 -r 8e6458270599 WrappingListbox/WrappingListbox/Properties/AssemblyInfo.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/WrappingListbox/WrappingListbox/Properties/AssemblyInfo.cs Fri Apr 06 17:13:35 2012 +0100 @@ -0,0 +1,55 @@ +using System.Reflection; +using System.Resources; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.Windows; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("WrappingListbox")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("WrappingListbox")] +[assembly: AssemblyCopyright("Copyright © 2012")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +//In order to begin building localizable applications, set +//CultureYouAreCodingWith in your .csproj file +//inside a . For example, if you are using US english +//in your source files, set the to en-US. Then uncomment +//the NeutralResourceLanguage attribute below. Update the "en-US" in +//the line below to match the UICulture setting in the project file. + +//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)] + + +[assembly: ThemeInfo( + ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located + //(used if a resource is not found in the page, + // or application resource dictionaries) + ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located + //(used if a resource is not found in the page, + // app, or any theme specific resource dictionaries) +)] + + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff -r 274fd2386d55 -r 8e6458270599 WrappingListbox/WrappingListbox/Properties/Resources.Designer.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/WrappingListbox/WrappingListbox/Properties/Resources.Designer.cs Fri Apr 06 17:13:35 2012 +0100 @@ -0,0 +1,71 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.17379 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace WrappingListbox.Properties +{ + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources + { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() + { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager + { + get + { + if ((resourceMan == null)) + { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("WrappingListbox.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture + { + get + { + return resourceCulture; + } + set + { + resourceCulture = value; + } + } + } +} diff -r 274fd2386d55 -r 8e6458270599 WrappingListbox/WrappingListbox/Properties/Resources.resx --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/WrappingListbox/WrappingListbox/Properties/Resources.resx Fri Apr 06 17:13:35 2012 +0100 @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff -r 274fd2386d55 -r 8e6458270599 WrappingListbox/WrappingListbox/Properties/Settings.Designer.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/WrappingListbox/WrappingListbox/Properties/Settings.Designer.cs Fri Apr 06 17:13:35 2012 +0100 @@ -0,0 +1,30 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.17379 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace WrappingListbox.Properties +{ + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase + { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default + { + get + { + return defaultInstance; + } + } + } +} diff -r 274fd2386d55 -r 8e6458270599 WrappingListbox/WrappingListbox/Properties/Settings.settings --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/WrappingListbox/WrappingListbox/Properties/Settings.settings Fri Apr 06 17:13:35 2012 +0100 @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff -r 274fd2386d55 -r 8e6458270599 WrappingListbox/WrappingListbox/WrappingListbox.csproj --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/WrappingListbox/WrappingListbox/WrappingListbox.csproj Fri Apr 06 17:13:35 2012 +0100 @@ -0,0 +1,106 @@ + + + + Debug + x86 + 8.0.30703 + 2.0 + {8453E737-9656-4724-BD08-FAA1A4CD6D95} + WinExe + Properties + WrappingListbox + WrappingListbox + v4.0 + Client + 512 + {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + 4 + + + x86 + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + x86 + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + 4.0 + + + + + + + + MSBuild:Compile + Designer + + + MSBuild:Compile + Designer + + + App.xaml + Code + + + MainWindow.xaml + Code + + + + + Code + + + True + True + Resources.resx + + + True + Settings.settings + True + + + ResXFileCodeGenerator + Resources.Designer.cs + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + + + + + + + \ No newline at end of file