This question is locked. New answers and comments are not allowed.
I have two questions related to the Upload control.
1) I would like the Upload Control to automatically increase in height according to the number of files selected by the user. I tried a previous thread's suggestion of adding "Max Height = Infinity", but that did not work.
2) I would like to change the theme to Windows7. I tried following the directions in the Setting The Theme link, but I get a "resource missing" error.
Below is my control code. Please advise. Thank you.
1) I would like the Upload Control to automatically increase in height according to the number of files selected by the user. I tried a previous thread's suggestion of adding "Max Height = Infinity", but that did not work.
2) I would like to change the theme to Windows7. I tried following the directions in the Setting The Theme link, but I get a "resource missing" error.
Below is my control code. Please advise. Thank you.
<UserControl x:Class="ImageGalleryUpload.Page" xmlns:telerik="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Input" Width="550" > <Grid x:Name="LayoutRoot" Background="White"> <telerik:RadUpload x:Name="radUpload" FilterIndex="0" IsAutomaticUpload="false" OverwriteExistingFiles="True" HorizontalAlignment="Left" VerticalAlignment="Top" FilesSelected="radUpload_FilesSelected" UploadStarted="radUpload_UploadStarted" FileUploaded="radUpload_FileUploaded" FileUploadStarting="RadUpload_FileUploadStarting" UploadFinished="RadUpload_UploadFinished" Width="550" MaxFileSize="5000000" MaxFileCount="20" IsAppendFilesEnabled="True" /> </Grid> </UserControl>