Questions tagged [pagecontrol]
77 questions
2
votes
1 answer
objective-c UIPageViewController and PageControls
I'm creating UIPageViewController and overriding these functions:
- (NSInteger)presentationCountForPageViewController:(UIPageViewController *)pageViewController
- (NSInteger)presentationIndexForPageViewController:(UIPageViewController…

a-rukin
- 363
- 1
- 3
- 6
2
votes
2 answers
How can I set the color of a docked form in a tab sheet to the correct color?
When I dock a TForm to a TTabSheet the form has a gray background color. The tab sheet on the other hand has a white background color.
It gets more complicated when theming is disabled (e.g. classic Windows theme).
With the current code the grey…

Jens Mühlenhoff
- 14,565
- 6
- 56
- 113
1
vote
1 answer
The caption of "flipped" on styled pagecontrol to RTL
I use Delphi 10.3, some styles (Of RAD only)
I write right-to-left desktop applications.
with "normal" widows.
The pagecontrol draw the tabsheet from left-to-right, like this
but I want the page control to paint itself from right-to-left, like…

mazluta
- 89
- 7
1
vote
2 answers
Flutter using PageController to change PageView from another class
Help I'm a flutter newbie and I've built a file that has OnTap TapGestureRecognizer functions, which I'm trying to manage the pageView within a second page.
I've tried a few different options and but I can't work out how to get pageController to…

ukholly
- 45
- 1
- 8
1
vote
0 answers
change PageControl height from UIPageViewControllerDataSource
I have a PageViewController set up and everything is working as it should. Currently I'm working on the GUI appearances, and running into some problems with the Page Indicator (UIPageControl).
I have set up the datasource of the PageViewController…

Paul Heuts
- 11
- 1
1
vote
1 answer
Determine which form in activepage, delphi
I have a mainform (frmMain) with a pagecontrol. The pagecontrol is populated at startup by several forms, let us say Form1, Form2, and Form3
procedure TForm1.FormCreate(Sender: TObject);
begin
ManualDock(frmMain.PageControl1);
…
user2964812
1
vote
0 answers
Is it possible to show the app UI portion of iOS sharing extension into a page control in SWIFT?
I am using the following code to share text using iOS sharing extension (UIActivityViewController).
let vc = UIActivityViewController(activityItems: ["File URL"], applicationActivities: [])
presentViewController(vc, animated: true, completion:…

Seemanta Saha
- 76
- 7
1
vote
0 answers
AppleWatch - How to detect the index of page based interface?
Is there any way to detect that index of page am I?
I need this because I added a button in each page for to send info. to Iphone with a specific ID. (interaction between watch & iphone work)

A. Trejo
- 641
- 8
- 17
1
vote
1 answer
Strange behavior of Page View Controller on iPhone 6 and iPhone 6 Plus
I trying to implement page view controller with three pages. I already did it, it works very well on iPhones with 3.5- and 4-inch displays, but something wrong happens with 4.7- and 5.5-inch displays.
I found that hiding of standard Page Control of…

Eugene Biryukov
- 1,702
- 1
- 13
- 19
1
vote
2 answers
(Swift) How to implement a Page Control through paging single views?
I want to implement a page control in my project so that every view can be accessed through swiping left or right. Every example I have looked at is to do with images, not views. I've been studying this and its of course images again. My application…

wogwog
- 99
- 1
- 11
1
vote
2 answers
Is it OK to change Parent repeatedly?
I have a PageControl with five-tabs. Three of the tabs have a DBGrid, all using the same columns and DataSource. When a user clicks on a Title I change IndexFieldNames and Bold the appropriate Title. Currently I am doing...
for i:=0 to…
user2175495
1
vote
1 answer
Page control or scroll view for different controller
I want to make a view controller that swipes through 3 different controller (2 table view controllers and a view controller. Each of the 3 child controllers have a custom class. Is better to use a scrollview with paging or a page view…

Stefano Vet
- 567
- 1
- 7
- 18
1
vote
2 answers
Silverstripe 3: create page control function to get images from grandchild pages and sort all randomly
I'm trying to get a specific image ($FeaturedImage) from every grandchild page (GalleryPage.ss) of my Portfolio Page (PortfolioPage.ss) and display them in a random order.
I can get the images using the template easily enough. PortfolioPage.ss
<%…

pinkp
- 445
- 2
- 12
- 30
1
vote
0 answers
UIPageViewController delayed when pressing indicator
I have problem in my app with indicator changing color for specific view.
My app has 4 viewControllers with different colors contained in PageViewController class.
I've set PageViewController view.backgroundcolor to match current viewControllers…

Babac
- 931
- 11
- 21
1
vote
0 answers
How to connect page control to scroller in xcode?
I'm following this tutorial here and have just finished. I was wondering if anybody could help me figure out how to animate this so that the images move in and out on swipe. I've looked around and can't find an answer. Also I would like to do it…

user2555187
- 11
- 1