Advanced Forum Search Results
-
I implemented for changing the scale of canvas/usercontrol. But it would be great if you can suggest me with making with event/delegates because my Main Page application is made up of 5-6 usercontrols and in all controls i need to implement the funtionality at a time. Implemented slider which is in Childwindow according to its movement i need ...
-
-
According to both of your suggestions. I implemented for changing the scale of canvas/usercontrol.
But it would be great if you can suggest me with making with event/delegates because my Main Page application is made up of 5-6 usercontrols and in all controls i need to implement the funtionality at a time.
As i mentioned earlier slider ...
-
This works for me ..........one more thing incase if slider is in childwindow and MainPage is made of mutiple usercontrols/ bands. Then i want to have the same functionality using event/delegate concept so that any control in mainpage can move according to slilder movement.
Please guide me through if you have any idea.
-
I need to zoom into the page and zoom out of th page with the help of slider. Slider is present in the childwindow and the contents in the parent window need to zoom in with respect to the slider change
-
i added one more textbox ..........when i pasting the code its not visible i dont know why.......but yes. When one more textbox is there it should also change its value
-
When i just added onemore textbox in MainPage it dint work ..........and i am wonderin i need to do this for all items. It can be n number of controls or data
<UserControl x:Class="SilverlightApplication1.MainPage"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
-
This is what exactly i want. But incase if there any many items in the Page ..........Lost of data is flowing so there will be many contents apart from one textblock. There can b n number of textboxes and n number of dynamic data flowing
So how to change all the font size with respect to slider ...........
-
Yes i placed that instance.........that was resolved. What ever the content is there in Main Page that need to change with respect to slider movement which is in childwindow
-
namespace ChildWindowApp
{
public partial class Page2 : UserControl
{
private AppChildWindow childwindow1;public Page2()
{
InitializeComponent();childwindow1.FontChanged += new EventHandler<AppChildWindow.MyEventArgs>(changeFontSize);
}
void changeFontSize(object sender, AppChildWindow.MyEventArgs e) ...