Forum Replies Created
-
AuthorPosts
-
in reply to: FlatButton Bug #9056
Hi, thank you for the observation, we noticed that too but you can still hack it by initializing selected during Form_Load for the first button. We will work on that.
Thank you once again.in reply to: Bunifu Transition – Animated Sliding Panel. #7985Hi, here is your solution. https://mega.nz/#!pJdAwQ7B!Vpo1jM50x9HPHfvA6KaOVxjREjVZXHHOYHvnGXMenHY Happy coding.
in reply to: Bunifu Transition – Animated Sliding Panel. #7730Sorry for the late response, all you need to do is implement the click event for menu instead of putting the code inside Form_load
Here: See Image
or code
` private void btnSlidingPanel_Click(object sender, EventArgs e)
{
if (slidePane.Width == 38)
{
slidePane.Visible = false;
slidePane.Width = 189;
panelAnimator.ShowSync(slidePane);
logoAnimator.ShowSync(largeLogo);
}
else
{
logoAnimator.Hide(largeLogo);
slidePane.Visible = false;
slidePane.Width = 38;
panelAnimator.ShowSync(slidePane);
}
}`in reply to: How to change symbol #7395I hope you found a solution to this.
in reply to: Bunifu Transition – Animated Sliding Panel. #7394The attached link is a local file, host it somewhere or create a ticket for it.
in reply to: Bunifu Transition – Animated Sliding Panel. #7393Hi, sorry about that, there is no explanation going on the video but music. the sidemenu control is a panel – you can rename it via properties window. Having trouble check the comment section of the video, most issues have been covered there.
in reply to: Dropdonw menu is not working #7040The functionality of the framework is not limited to the type of Windows architecture, it should work on both devices. Maybe if you can give us more information about the problem it will help in finding a solution for you.
in reply to: Transition "bug" #6877Issue sorted via teamviewer.
in reply to: FlatButton.PerformClick(); #6868Thank you Alexander for answering that question. That’s the correct answer. I suggest to you George you make use of Visual studio IntelliSense and Properties window for easy coding and navigation. Cheers.
in reply to: Transition "bug" #6706Please user AnimationComplete event to show the new Window. As shown Here and https://prntscr.com/e0ieic
Note : For a smooth transition it should have a small delay time.in reply to: Button Tabs #6500This Video will come in handy.
in reply to: Button Tabs #6472Hi, as indicated via email sent to you, the tabs may not be equally same as the native Tab Control – and we don’t have a Tab Control for that matter but we are giving an option to your BunifuFlatButton to mimic a Tabbed interface. You may also want to create custom user controls to switch between then on your side bar buttons.
in reply to: SpashScreen Transparent in vb.net #6169Please provide us the reference to the video or the c# source.
in reply to: How to animate UserControl in Form #6168Please use BunifuTransition Control to animate other controls.
in reply to: BunifuTransition & BunifuFormFadeTransition #5703Hi Gabriel, there is less code to write for this so after drag-dropping on your form and selecting the transition
bunifuTransition.ShowSync("Control to show",true,null)
as described at the bottom of this Page -
AuthorPosts