Binpress components2011-05-26T19:16:29+00:00Zend_Feed_Writerhttp://www.binpress.comBinpresscontact@binpress.comhttp://www.binpress.com2011-05-26T19:16:29+00:002011-05-26T19:16:29+00:00http://www.binpress.com/app/listbox-zoom-wpfc%23/434Vedran Maricevicnoreply@binpress.comhttp://www.binpress.comdev/profile/2054Enables Zooming on ListBox WPF/C# with MouseListBox in WPF is good. This code will give it additional usability. When you hover your mouse over it, the current items in the ListBox will Zoom, thus giving it a really nice look.There is no code behind, only XAML. You can easily change colors and other properties,2011-02-21T07:51:49+00:002011-02-21T07:51:49+00:00http://www.binpress.com/app/dotnet-transform-image/141Matt Passnoreply@binpress.comhttp://www.binpress.comdev/profile/126Resize, scale, crop and flip image transforms are easy with DotNet Transform Image. Just pass through POST form values to this component and it will create your transformed image automatically.Transforming images is easy with the DotNet Transform Image component. You can scale, crop, rotate and flip your image in order to get it transformed to your requirements.Because it's a chunk of code you can call on, it's great for multiple file processing, such as multiple image resizing, but also fine for single image processing too, perhaps upon user request to rotate the image, for instance.UsageCopy the dotnet-transform-image.aspx to your website root folder. Create 3 new folders in the root, titled display, originals and output. display is where you have a smaller version of your image to display to the user. originals is where you have your high quality original image which the output image will work from. output is where your image will be saved.To use this component, just POST your form values to dotnet-transform-image.aspx as follows;tImageWidth = The width of the image as an integer number onlytImageHeight = The height of the image as an integer number onlytImageCropStartX = The top left x-coordinate of the crop box area, integer number onlytImageCropStartY = The top left y-coordinate of the crop box area, integer number onlytImageCropEndX = The bottom right x-coordinate of the crop box area, integer number onlytImageCropEndY = The bottom right y-coordinate of the crop box area, integer number onlytImageRotate = The degrees to rotate as an integer - either 0, 90, 180 or 270tImageFlipX = 1 to not flip on the x-axis, -1 to flip on the x-axis, integer number onlytImageFlipY = 1 to not flip on the y-axis, -1 to flip on the y-axis, integer number onlytImageName = The name of the imageThese values when passed to the ASPX page will transform the image as you request. Easy!Because this component works from a smaller screen display version plus a seperate high quality version, you have the speed of viewing the image quickly and the quality of a master version to use for transformation processing (which means you can choose to scale images upwards and get a high quality output image).Documentation and demo example included with component.